000-default.conf 498 B

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