--- [EMAIL PROTECTED] wrote: > What's your complete apache RT config? Not the whole httpd.conf file, just > the stuff relative to RT.
Portion of the httpd.conf points to rt.conf file. # more httpd.conf # Tell FastCGI to put its temporary files somewhere sane. FastCgiIpcDir /tmp # Number of processes is tunable, but you need at least 3 or 4 FastCgiServer /opt/rt3/bin/mason_handler.fcgi -idle-timeout 120 -processes 10 # FastCGI stuff for RT (can't be in a virtual host section) Include "/usr/local/apache2/conf/rt.conf" # more rt.conf <VirtualHost 192.168.1.1:80> RewriteEngine on RewriteCond %{HTTPS} off #RewriteRule ^/(.*) https://rt.abc.com/admin/$1 [R] RewriteRule ^/(.*) https://rt.abc.com/$1 [R] ServerAdmin [EMAIL PROTECTED] DocumentRoot /opt/rt3/share/html ServerName rt.abc.com ServerAlias rt ErrorLog logs/rt-error_log CustomLog logs/rt-access_log common </VirtualHost> <VirtualHost 192.168.1.1:443> SSLEngine on SSLCertificateFile /usr/local/apache2/conf/sslcert/rt.cert SSLCertificateKeyFile /usr/local/apache2/conf/sslcert/rt.key SSLVerifyClient none SSLVerifyDepth 10 ServerAdmin [EMAIL PROTECTED] DocumentRoot /opt/rt3/share/html ServerName rt.abc.com ServerAlias rt ErrorLog logs/rt-error_log CustomLog logs/rt-access_log common # this block is for RT running with fastcgi AddHandler fastcgi-script fcgi ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/ ____________________________________________________________________________________ Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for today's economy) at Yahoo! Games. http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: [EMAIL PROTECTED] Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com