20 lines
781 B
Plaintext
Raw Normal View History

<VirtualHost *:80>
ServerName test.sd.dev
UseCanonicalName On
UseCanonicalPhysicalPort On
DocumentRoot /home/vhosts/test
<Directory /home/vhosts/test/>
2014-12-29 15:30:57 +01:00
EnableSendfile Off
2014-12-12 17:18:56 +01:00
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel error
ErrorLog /home/vhosts/apachelog/test-error.log
CustomLog /home/vhosts/apachelog/test-access.log combined
</VirtualHost>