1234567891011121314151617181920 |
- <VirtualHost *:80>
- ServerAdmin eyeofmidas@gmail.com
- ServerName doxen.test
- ServerAlias *doxen.test
- DocumentRoot /var/www/doxen/htdocs
- <Directory />
- Options FollowSymLinks +Indexes
- AllowOverride all
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog ${APACHE_LOG_DIR}/doxen_error.log
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
- CustomLog ${APACHE_LOG_DIR}/doxen_access.log combined
- </VirtualHost>
|