20 lines
835 B
Plaintext
20 lines
835 B
Plaintext
<VirtualHost *:80>
|
|
ServerName test.sd.dev
|
|
UseCanonicalName On
|
|
UseCanonicalPhysicalPort On
|
|
DocumentRoot /home/vhosts/test
|
|
<Directory /home/vhosts/test/>
|
|
# EnableSendFile is disable for performance reason under vagrant
|
|
EnableSendfile Off
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride all
|
|
Require all granted
|
|
</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 ${APACHE_LOG_DIR}/test-error.log
|
|
CustomLog ${APACHE_LOG_DIR}/test-access.log combined
|
|
</VirtualHost> |