jimp
05-10-2006, 11:17 PM
Starting from this discussion: http://www.interworx.com/forums/showthread.php?t=539#post7973
NodeWorx (or SiteWorx?) does not configure SSL virtual hosts correctly. The provided configuration makes connections from MSIE clients very slow and CGI scripts without access to the SSL environment variables.
This is a per-domain issue, but it does not appear to be fixable by editing /home/interworx/etc/vhost-base.conf. Individual domains can be fixed by editing their SSL virtual host like this:
Change:
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown To:
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/home/{USER}/{DOMAIN}/html/cgi-bin/">
SSLOptions +StdEnvVars
</Directory>
NodeWorx (or SiteWorx?) does not configure SSL virtual hosts correctly. The provided configuration makes connections from MSIE clients very slow and CGI scripts without access to the SSL environment variables.
This is a per-domain issue, but it does not appear to be fixable by editing /home/interworx/etc/vhost-base.conf. Individual domains can be fixed by editing their SSL virtual host like this:
Change:
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown To:
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/home/{USER}/{DOMAIN}/html/cgi-bin/">
SSLOptions +StdEnvVars
</Directory>