Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin julian-groshaupt@gmail.com
  3. ServerName www.julian-groshaupt.de
  4. DocumentRoot /var/www
  5. <Directory />
  6. Options FollowSymLinks
  7. AllowOverride None
  8. </Directory>
  9. <Directory /var/www/>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride None
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15.  
  16. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  17. <Directory "/usr/lib/cgi-bin">
  18. AllowOverride None
  19. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  20. Order allow,deny
  21. Allow from all
  22. </Directory>
  23.  
  24. ErrorLog ${APACHE_LOG_DIR}/error.log
  25.  
  26. # Possible values include: debug, info, notice, warn, error, crit,
  27. # alert, emerg.
  28. LogLevel warn
  29.  
  30. CustomLog ${APACHE_LOG_DIR}/access.log combined
  31. </VirtualHost>
  32.  
  33. <VirtualHost *:80>
  34. ServerAdmin juliplayer00@gmail.com
  35. ServerName www.juliplayer00.de
  36. DocumentRoot /var/www2
  37. <Directory /var/www2>
  38. Options All
  39. AllowOverride All
  40. </Directory>
  41. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement