Demo Discussion
Forum Config Examples Contributions Vulnerabilities
  Discussion forum about ELOG  Not logged in ELOG logo
icon1.gif   ssl problems, posted by Olaf Kasten on Fri Feb 10 11:54:35 2012 
    icon2.gif   Re: ssl problems, posted by John Doroshenko on Fri Feb 10 17:18:25 2012 
       icon2.gif   Re: ssl problems, posted by Andreas Luedeke on Sat Feb 11 05:43:33 2012 
          icon2.gif   Re: ssl problems, posted by Christian Herzog on Sat Feb 11 22:05:36 2012 
             icon2.gif   Re: ssl problems, posted by Andreas Luedeke on Sat Feb 11 22:19:07 2012 
                icon2.gif   Re: ssl problems, posted by Christian Herzog on Sat Feb 11 22:27:15 2012 
                   icon2.gif   Re: ssl problems, posted by Andreas Luedeke on Sat Feb 11 22:37:34 2012 
                      icon2.gif   Re: ssl problems, posted by Olaf Kasten on Mon Feb 13 21:44:05 2012 
          icon2.gif   Re: ssl problems, posted by John Doroshenko on Tue Feb 14 00:55:58 2012 
             icon2.gif   Re: ssl problems, posted by Andreas Luedeke on Tue Feb 14 14:54:06 2012 
                icon2.gif   Re: ssl problems, posted by Diego on Tue Feb 14 17:17:44 2012 
             icon2.gif   Re: ssl problems, posted by John Doroshenko on Tue Feb 14 20:41:08 2012 fire10elog.patch
                icon2.gif   Re: ssl problems, posted by Stefan Ritt on Thu Feb 16 18:10:33 2012 
                   icon2.gif   Re: ssl problems, posted by John Doroshenko on Thu Feb 16 23:56:35 2012 
                   icon2.gif   Re: ssl problems, posted by Stefan Ritt on Mon Feb 20 14:53:04 2012 
Message ID: 67196     Entry time: Tue Feb 14 14:54:06 2012     In reply to: 67195     Reply to this: 67197
Icon: Reply  Author: Andreas Luedeke  Author Email: andreas.luedeke@psi.ch 
Category: Bug fix  OS: Linux | Windows  ELOG Version: 2.9.0 
Subject: Re: ssl problems 

John Doroshenko wrote:

 

[...] The elog server is running SL5.5 (updates applied).  As you suggested, I ran firefox 3.6.26 on the elog server via https://localhost:port and it worked fine.   Downloaded firefox 10.0.1 and retried

on elog server and get error again:  The connection was Reset; The connection to the server was reset while the page was loading.

-John

Finally I was able to reproduce the problem. I don't know why FF10 worked locally on the ELOG host last weekend, maybe I shouldn't have worked on it during a night shift. I can now confirm that ELOG has problems with firefox 10.0.1.

For those who need a quick workaround: you can set-up apache to access elog via a reverse proxy (like I do and like Stefan does for the ELOG forum does). That 'll work fine with new browsers like FF10.0.1 (at least for apache 2.2) ;-)

Some guidance how to set it up can be found here: https://midas.psi.ch/elogs/Contributions/11

A shorter (but may be incomplete) summary:

  • add in httpd.conf
    • Listen 443
      LoadModule proxy_module modules/mod_proxy.so
    • ServerName <fully-qualified-host-name>
    •  
  • add in ssl.conf
    • <VirtualHost _default_:443>

ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
LogLevel warn
SSLEngine on
SSLProxyEngine on
ProxyPreserveHost On
<Location />
    ProxyPass         https://<fully-qualified-host-name>:444/
    ProxyPassReverse  https://<fully-qualified-host-name>:444/
    SSLRequireSSL
</Location>
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
SSLProxyCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile "<cert-file>"
SSLCertificateKeyFile "<cert-key-file>"
</VirtualHost> 

  • And in the ELOG configuration [global] section
    •  port = 444
    • URL = https://<fully-qualified-host-name>                 

Cheers

Andreas

 
Detect language » English
 
ELOG V3.1.5-fe60aaf