On Oct 1, 2009, at 5:19 PM, Kevin Falcone wrote: > On Thu, Oct 01, 2009 at 05:01:02PM -0700, Kai Lanz wrote: >> >> Alias /NoAuth /usr/local/rt3/share/html/NoAuth > > This prevents the mason dhandler from running and producing css > >> ScriptAlias /rt/ /usr/local/rt3/bin/mason_handler.fcgi/ >> >> I had to set the NoAuth alias to the value shown here to get rid of >> an earlier >> error from Apache -- "File does not exist: /WWW/NoAuth". > > Sounds like an apache config issue, but you've found the wrong > solution to it.
Thanks, Kevin, you're correct. I've repaired my Apache config, and now RT looks beautiful again. For those interested, here's my current config: RT_SiteConfig.pm: Set( $rtname, 'SES'); Set($Timezone , 'US/Pacific'); Set($Organization , "es.stanford.edu"); Set($Webpath , ""); Set($WebBaseURL , "http://esrt.stanford.edu"); Set($CorrespondAddress , '[email protected]'); Set($CommentAddress , '[email protected]'); Set($OwnerEmail , 'rt-manager'); @LogToSyslogConf = ( facility => 'local3', min_level => 'warning' ) unless (@LogToSyslogConf); From Apache's httpd.conf: FastCgiIpcDir /var/tmp FastCgiServer /usr/local/rt3/bin/mason_handler.fcgi -idle-timeout 120 <VirtualHost *:80> ServerName esrt.stanford.edu ServerAlias esrt esrt.Stanford.EDU DocumentRoot /usr/local/rt3/share/html/ AddHandler fastcgi-script fcgi Alias /NoAuth/images /usr/local/rt3/share/html/NoAuth/images/ ScriptAlias / /usr/local/rt3/bin/mason_handler.fcgi/ </VirtualHost> -- Kai Lanz _______________________________________________ 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
