apache2_doxen 473 B

1234567891011121314151617181920
  1. <VirtualHost *:80>
  2. ServerAdmin eyeofmidas@gmail.com
  3. ServerName doxen.test
  4. ServerAlias *doxen.test
  5. DocumentRoot /var/www/doxen/htdocs
  6. <Directory />
  7. Options FollowSymLinks +Indexes
  8. AllowOverride all
  9. Order allow,deny
  10. Allow from all
  11. </Directory>
  12. ErrorLog ${APACHE_LOG_DIR}/doxen_error.log
  13. # Possible values include: debug, info, notice, warn, error, crit,
  14. # alert, emerg.
  15. LogLevel warn
  16. CustomLog ${APACHE_LOG_DIR}/doxen_access.log combined
  17. </VirtualHost>