devilbox/.devilbox/etc/apache-2.4/01-vhost-default.conf

33 lines
554 B
Plaintext
Raw Normal View History

2016-10-09 16:47:49 +00:00
##
## Default Host for http://localhost
##
2016-10-10 08:16:09 +00:00
2016-10-09 16:47:49 +00:00
<VirtualHost _default_:80>
ServerName localhost
ServerAdmin root@localhost
ErrorLog /var/log/apache-2.4/localhost-error.log
CustomLog /var/log/apache-2.4/localhost-access.log combined
DirectoryIndex index.php index.html
DocumentRoot "/var/www/default/htdocs"
<Directory "/var/www/default/htdocs">
DirectoryIndex index.php index.html
AllowOverride All
Options All
RewriteEngine on
RewriteBase /
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>