[rt-users] RT using SSL
Leon Sonntag
leon at iwa-solutions.com
Fri Dec 5 17:00:44 EST 2003
I'm stumped!!!
I'm trying to get RT 3.0.6 running under SSL on Apache 2.0.40 on a RH8
system. The web interface works fine (though quite slow to initially
connect). I can start SSL on Apache. When I connect with SSL running I
get the generic Apache startup page even though I have all the redirects
the same as without SSL.
My SSL virtual host data is in ssl.conf. I reference that file from
httpd.conf.
ssl.conf -
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
<IfModule mod_ssl.c>
SSLPassPhraseDialog builtin
SSLSessionCache dbm:/etc/httpd/logs/ssl_scache
SSLSessionCacheTimeout 300
SSLMutex file:/etc/httpd/logs/ssl_mutex
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
SSLLog /etc/httpd/logs/ssl_engine_log
SSLLogLevel info
</IfModule>
##
## SSL Virtual Host Context
##
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog /etc/httpd/logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
#NameVirtualHost *:443
NameVirtualHost rt.iwapps.com:443
<VirtualHost rt.iwapps.com:443>
ServerName rt.iwapps.com
DocumentRoot /opt/rt3/share/html
ErrorLog logs/rt/error_log
CustomLog logs/rt/access_log combined
#AddDefaultCharset UTF-8
PerlModule Apache2 Apache::compat
PerlModule Apache::DBI
PerlRequire /opt/rt3/bin/webmux.pl
<Directory /opt/rt3/share/html>
Order allow,deny
Allow from all
Options All
AllowOverride All
AddDefaultCharset UTF-8
<Files *.html>
SetHandler perl-script
PerlHandler RT::Mason
</Files>
</Directory>
<Directory /opt/rt3/share/html/Ticket/Attachment>
SetHandler perl-script
PerlHandler RT::Mason
</Directory>
<Directory /opt/rt3/share/html/SelfService/Attachment>
SetHandler perl-script
PerlHandler RT::Mason
</Directory>
<Directory /opt/rt3/share/html/REST>
SetHandler perl-script
PerlHandler RT::Mason
</Directory>
</VirtualHost>
maybe somebody can see something I missed
More information about the rt-users
mailing list