14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /var/www/def/public
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log detailed
|
|
<Directory /var/www/def/public>
|
|
Options -Indexes +FollowSymLinks +MultiViews
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
|
|
# vim: set tabstop=4 shiftwidth=4 expandtab smarttab:
|