# more rt3.conf

<VirtualHost *:80>
    ServerName rt.domain.com
    ServerAdmin root@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@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: [email protected] 
[mailto:[email protected]] On Behalf Of Brahim Sakka
Sent: Wednesday, July 13, 2011 3:56 AM
To: [email protected]
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
--------
2011 Training: http://bestpractical.com/services/training.html

Reply via email to