| 1234567891011121314151617181920 |
- <VirtualHost *:80>
- #ServerName www.example.com
- ServerAdmin webmaster@localhost
- DocumentRoot /opt/Eye/html
- <Directory /opt/Eye/html/>
- Options Indexes FollowSymLinks
- AllowOverride None
- Require all granted
- </Directory>
- ErrorLog ${APACHE_LOG_DIR}/error.log
- CustomLog ${APACHE_LOG_DIR}/access.log combined
- </VirtualHost>
- # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|