Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin {{email}}
  3. ServerName {{domain}}
  4.  
  5.  
  6. DocumentRoot {{website root}}
  7. <Directory />
  8. Options FollowSymLinks
  9. AllowOverride None
  10. </Directory>
  11. <Directory {{website root}}>
  12. Options Indexes FollowSymLinks MultiViews
  13. AllowOverride All
  14. Order allow,deny
  15. allow from all
  16. Require all granted
  17. </Directory>
  18.  
  19.  
  20. ErrorLog ${APACHE_LOG_DIR}/{{domain}}-error.log
  21. LogLevel warn
  22. CustomLog ${APACHE_LOG_DIR}/{{domain}}-access.log
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement