Advertisement
Guest User

Untitled

a guest
Jul 25th, 2012
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. <VirtualHost 127.0.0.1:80>
  2.     ServerName   rt.local
  3.  
  4.     # Tell FastCGI to trigger on the handler
  5.     FastCgiServer /usr/share/request-tracker3.8/libexec/mason_handler.fcgi
  6.  
  7.     # Bypass FastCGI for images
  8.     Alias /rt/NoAuth/images /usr/share/request-tracker3.8/html/NoAuth/images
  9.  
  10.     # Use the handler for everything else
  11.     ScriptAlias /rt /usr/share/request-tracker3.8/libexec/mason_handler.fcgi
  12.  
  13.     <Location /rt/>
  14.         DirectoryIndex index.html
  15.     </Location>
  16.  
  17.     # Limit mail gateway access to localhost by default
  18.     <Location /rt/REST/1.0/NoAuth>
  19.         Order Allow,Deny
  20.         Allow from all
  21.     </Location>
  22.  
  23.  
  24. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement