mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
18 lines
409 B
ApacheConf
18 lines
409 B
ApacheConf
#######################
|
|
# HOSTNAME
|
|
######################
|
|
|
|
<VirtualHost 127.0.0.1:PORT>
|
|
ServerAdmin patrick@heysparkbox.com
|
|
DocumentRoot "/var/www/HOSTNAME"
|
|
ServerName HOSTNAME
|
|
|
|
<Directory "/var/www/HOSTNAME">
|
|
Options Indexes MultiViews FollowSymLinks
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from all
|
|
DirectoryIndex index.php
|
|
</Directory>
|
|
</VirtualHost>
|