000-default.conf 434 B

123456789101112131415161718
  1. <VirtualHost *:80>
  2. #ServerName www.example.com
  3. ServerAdmin webmaster@localhost
  4. DocumentRoot "/srv/www/apache"
  5. #LogLevel info ssl:warn
  6. ErrorLog ${APACHE_LOG_DIR}/000-default.error.log
  7. CustomLog ${APACHE_LOG_DIR}/000-default.access.log combined
  8. <Directory "/srv/www/apache">
  9. Options Indexes FollowSymLinks
  10. AllowOverride None
  11. Require all granted
  12. </Directory>
  13. </VirtualHost>
  14. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet