Advertisement
Guest User

RT 4.0.0 RC4 Apache2 Config

a guest
Jan 26th, 2011
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <VirtualHost *:80>
  2.     ServerAdmin webmaster@localhost
  3.  
  4.     DocumentRoot /var/www
  5.    
  6.     <Directory />
  7.         Options FollowSymLinks
  8.         AllowOverride None
  9.     </Directory>
  10.    
  11.     <Directory /var/www/>
  12.         Options Indexes FollowSymLinks MultiViews
  13.         AllowOverride None
  14.         Order allow,deny
  15.         allow from all
  16.     </Directory>
  17.  
  18.     ErrorLog ${APACHE_LOG_DIR}/error.log
  19.  
  20.     # Possible values include: debug, info, notice, warn, error, crit,
  21.     # alert, emerg.
  22.     LogLevel warn
  23.  
  24.     CustomLog ${APACHE_LOG_DIR}/access.log combined
  25.    
  26.  
  27.      
  28.     Alias /rt/ /opt/rt4/share/html/    
  29.    
  30.     <Directory /opt/rt4/share/html/>
  31.         Order allow,deny
  32.         Allow from all
  33.     </Directory>
  34.  
  35.     PerlRequire /opt/rt4/bin/webmux.pl
  36.     <Location /rt/>
  37.         AddDefaultCharSet UTF-8
  38.         SetHandler perl-script
  39.         PerlHandler RT::Mason
  40.     </Location>
  41.  
  42.  
  43. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement