ErrorLog /var/log/httpd/httpd_error.log TransferLog /var/log/httpd/httpd_access.log LogLevel info RewriteEngine on ReWriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L]

        ServerName redmine.myserver.com:443

        ProxyPass / http://localhost:3000/
        ProxyPassReverse / http://localhost:3000/

        ErrorLog /var/log/httpd/redmine_ssl_error.log
        TransferLog /var/log/httpd/redmine_ssl_access.log
        CustomLog /var/log/httpd/redmine_ssl_request.log \
                "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
        LogLevel info

        SSLEngine on
        SSLProtocol all -SSLv2
        SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
        SSLCertificateFile /home/apache/cgi-bin/redmine/cert/redmine.myserver.com.crt
        SSLCertificateKeyFile /home/apache/cgi-bin/redmine/cert/redmine.myserver.com.key

        #SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
        
                SSLOptions +StdEnvVars
        
        
                SSLOptions +StdEnvVars
        

        SetEnvIf User-Agent ".*MSIE.*" \
                nokeepalive ssl-unclean-shutdown \
                downgrade-1.0 force-response-1.0