20 lines
781 B
Plaintext
20 lines
781 B
Plaintext
<VirtualHost *:80>
|
|
ServerName test.sd.dev
|
|
UseCanonicalName On
|
|
UseCanonicalPhysicalPort On
|
|
DocumentRoot /home/vhosts/test
|
|
<Directory /home/vhosts/test/>
|
|
EnableSendfile Off
|
|
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> |