Advertisement
puchiedarcy

Untitled

Mar 6th, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin puchiedarcy@puchiedarcy.com
  3.  
  4. DocumentRoot "/srv/puchiedarcy.com"
  5. ServerName puchiedarcy.com
  6. ServerAlias www.puchiedarcy.com
  7.  
  8. KeepAlive Off
  9. # This should be omitted in the production environment
  10. SetEnv APPLICATION_ENV development
  11.  
  12. <Directory "/srv/puchiedarcy.com">
  13. SetOutputFilter DEFLATE
  14. #AddOutputFilterByType DEFLATE application/json
  15. Options Indexes MultiViews FollowSymLinks
  16. AllowOverride All
  17. Order allow,deny
  18. Allow from all
  19. </Directory>
  20.  
  21.  
  22. ErrorLog /var/log/apache2/error.log
  23.  
  24. # Possible values include: debug, info, notice, warn, error, crit,
  25. # alert, emerg.
  26. LogLevel warn
  27.  
  28. #CustomLog /var/log/apache2/access.log combined
  29. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement