desktop-ubuntu/apache/conf/_default.conf

20 lines
407 B
Plaintext

<VirtualHost localhost:80>
ServerAdmin local@dym.sh
ServerName web.local
ServerAlias *.web.local
DocumentRoot /var/www/html
<Directory "/var/www/html">
Options FollowSymLinks Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
DirectoryIndex index.php,index.html
HostnameLookups Off
UseCanonicalName Off
ServerSignature On
</VirtualHost>