[rt-users] Setting up HTTPS on RT 3.8
Mark Jenks
mark.jenks at iodincorporated.com
Wed Jul 13 07:53:19 EDT 2011
# more rt3.conf
<VirtualHost *:80>
ServerName rt.domain.com
ServerAdmin root at localhost
DocumentRoot /opt/rt3/share/html
Alias /robots.txt /var/www/html/robots.txt
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
AddDefaultCharset UTF-8
PerlRequire /opt/rt3/bin/webmux.pl
<Directory /opt/rt3/share/html>
Order allow,deny
Allow from all
SetHandler perl-script
PerlResponseHandler RT::Mason
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerName rt.domain.com:443
ServerAdmin root at localhost
DocumentRoot /opt/rt3/share/html
Alias /robots.txt /var/www/html/robots.txt
ErrorLog logs/mysslerror.log
sslEngine on
SSLProtocol -ALL +SSLv3 +TLSv1
SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
TraceEnable off
LogLevel info
TransferLog logs/access_log
AddDefaultCharset UTF-8
PerlRequire /opt/rt3/bin/webmux.pl
<Directory /opt/rt3/share/html>
Order allow,deny
Allow from all
SetHandler perl-script
PerlResponseHandler RT::Mason
</Directory>
sslCertificateFile "/etc/httpd/certs/domain.com.crt"
sslCertificateKeyFile "/etc/httpd/certs/domain.cert-nopwd.pem"
sslCertificateChainFile /etc/httpd/certs/gd_bundle.crt
</VirtualHost>
From: rt-users-bounces at lists.bestpractical.com [mailto:rt-users-bounces at lists.bestpractical.com] On Behalf Of Brahim Sakka
Sent: Wednesday, July 13, 2011 3:56 AM
To: rt-users at lists.bestpractical.com
Subject: [rt-users] Setting up HTTPS on RT 3.8
Hello list,
I have an RT 3.8 installation and I want to set up HTTPS (no mixed content, everything over HTTPS).
Anyone can tell me how to do that (and sorry for the noob question) ?
Thanks in advance
Electronic Privacy Notice. This e-mail, and any attachments, contains information that is, or may be, covered by electronic communications privacy
laws, and is also confidential and proprietary in nature. If you are not the intended recipient, please be advised that you are legally prohibited from
retaining, using, copying, distributing, or otherwise disclosing this information in any manner. Instead, please reply to the sender that you have
received this communication in error, and then immediately delete it. Thank you in advance for your cooperation
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bestpractical.com/pipermail/rt-users/attachments/20110713/4a11fd50/attachment.htm>
More information about the rt-users
mailing list