Advertisement
Pingviller

apache-rt4-fail-1

Aug 24th, 2011
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ### Optional apache logs for RT
  3. # Ensure that your log rotation scripts know about these files
  4. # ErrorLog /opt/rt4/var/log/apache2.error
  5. # TransferLog /opt/rt4/var/log/apache2.access
  6. # LogLevel debug
  7.  
  8. AddDefaultCharset UTF-8
  9.  
  10. Alias /NoAuth/images/ /opt/rt4/share/html/NoAuth/images/
  11. ScriptAlias / /opt/rt4/sbin/rt-server.fcgi/
  12.  
  13. DocumentRoot "/opt/rt4/share/html"
  14. <Location />
  15. Order allow,deny
  16. Allow from all
  17.  
  18. Options +ExecCGI
  19. AddHandler fastcgi-script fcgi
  20. </Location>
  21. # added
  22. Alias /phpmyadmin /var/www/phpmyadmin
  23. <Directory "/phpmyadmin">
  24. Options Indexes MultiViews FollowSymLinks
  25. AllowOverride None
  26. Order deny,allow
  27. Deny from all
  28. Allow from 127.0.0.0/255.0.0.0 ::1/128
  29. </Directory>
  30. # not working
  31. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement