Advertisement
arxcorp

OpenDLP apache2 config not working

Jan 15th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. DocumentRoot /var/www
  4. Alias /OpenDLP/images/ /var/www/OpenDLP/web/bin/images/
  5. <Directory "/var/www/OpenDLP/web/bin/images/">
  6. Options FollowSymLinks
  7. AllowOverride None
  8. order allow,deny
  9. allow from all
  10. </Directory>
  11. Alias /OpenDLP/ /var/www/OpenDLP/web/bin/
  12. <Directory "/var/www/OpenDLP/web/bin/results/">
  13. Options FollowSymLinks
  14. AllowOverride None
  15. order allow,deny
  16. allow from all
  17. </Directory>
  18. <Directory "/var/www/OpenDLP/web/bin/">
  19. AddHandler cgi-script cgi pl html
  20. Options ExecCGI FollowSymLinks
  21. AllowOverride None
  22. order allow,deny
  23. allow from all
  24. </Directory>
  25. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement