Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin matteosistisette@gmail.com
  3. ServerName matteosistisette.com
  4. ServerAlias www.matteosistisette.com
  5. ServerAlias matteosistisette.es
  6. ServerAlias www.matteosistisette.es
  7. ServerAlias opentarget.org
  8. ServerAlias www.opentarget.org
  9.  
  10. DocumentRoot /srv/www/matteosistisette.com/public_html
  11. <Directory />
  12. Options FollowSymLinks
  13. AllowOverride None
  14. </Directory>
  15. <Directory /srv/www/matteosistisette.com/public_html>
  16. Options FollowSymLinks
  17. AllowOverride All
  18. Order allow,deny
  19. allow from all
  20. </Directory>
  21.  
  22. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  23. <Directory "/usr/lib/cgi-bin">
  24. AllowOverride None
  25. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  26. Order allow,deny
  27. Allow from all
  28. </Directory>
  29.  
  30. ErrorLog /srv/www/matteosistisette.com/error.log
  31.  
  32. # Possible values include: debug, info, notice, warn, error, crit,
  33. # alert, emerg.
  34. LogLevel notice
  35.  
  36. CustomLog /srv/www/matteosistisette.com/access.log combined
  37. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement