123456789101112131415161718 |
- <VirtualHost *:80>
-
- ServerAdmin webmaster@localhost
- DocumentRoot "/srv/www/apache"
-
- ErrorLog ${APACHE_LOG_DIR}/000-default.error.log
- CustomLog ${APACHE_LOG_DIR}/000-default.access.log combined
- <Directory "/srv/www/apache">
- Options Indexes FollowSymLinks
- AllowOverride None
- Require all granted
- </Directory>
- </VirtualHost>
|