Advertisement
arxcorp

working apache2 config

Jan 15th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. ServerName arX-box
  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. Alias /OpenDLP/images/ /var/www/OpenDLP/web/bin/images/
  16. <Directory "/var/www/OpenDLP/web/bin/images/">
  17. Options FollowSymLinks
  18. AllowOverride None
  19. order allow,deny
  20. allow from all
  21. </Directory>
  22. Alias /OpenDLP/ /var/www/OpenDLP/web/bin/
  23. <Directory "/var/www/OpenDLP/web/bin/results/">
  24. Options FollowSymLinks
  25. AllowOverride None
  26. order allow,deny
  27. allow from all
  28. </Directory>
  29. <Directory "/var/www/OpenDLP/web/bin/">
  30. AddHandler cgi-script cgi pl html
  31. Options ExecCGI FollowSymLinks
  32. AllowOverride None
  33. order allow,deny
  34. allow from all
  35. </Directory>
  36. ErrorLog /var/log/apache2/error.log
  37.  
  38. # Possible values include: debug, info, notice, warn, error, crit,
  39. # alert, emerg.
  40. LogLevel warn
  41.  
  42. CustomLog /var/log/apache2/access.log combined
  43.  
  44. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement