1
0

000-default.conf 390 B

1234567891011121314151617181920
  1. <VirtualHost *:80>
  2. #ServerName www.example.com
  3. ServerAdmin webmaster@localhost
  4. DocumentRoot /opt/Eye/html
  5. <Directory /opt/Eye/html/>
  6. Options Indexes FollowSymLinks
  7. AllowOverride None
  8. Require all granted
  9. </Directory>
  10. ErrorLog ${APACHE_LOG_DIR}/error.log
  11. CustomLog ${APACHE_LOG_DIR}/access.log combined
  12. </VirtualHost>
  13. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet