Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'problem showed up in SSLOptions' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
problem showed up in SSLOptions
Authored by: foniks2020 on Apr 10, '03 06:51:17PM

Commenting out the lines referring to +StdEnvVars does indeed allow the new libssl.so binary to work.

So as a final update: if you don't need +StdEnvVars as an SSLOption then you should be able to simply comment or delete that part of you httpd.conf to get the new libssl.so from Apple to play nicely with Apache.

Following is the section i commented out... the Files and Directory 'directives'.


# <Files ~ "\.(cgi|shtml|phtml|php3?)$">
# SSLOptions +StdEnvVars
# </Files>

# <Directory "/xxx/xxx/xxx/cgi-bin/>
# SSLOptions +StdEnvVars
# </Directory>

# correction for browsers that don't always handle SSL connections well
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# Per-Server Logging:
# The home of a custom SSL log file. Use this when you want a
# compact non-error SSL logfile on a virtual host basis.
CustomLog /var/log/httpd/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"


RewriteEngine on
RewriteRule ^/(.*)-SSL$ https://%{SERVER_NAME}/$1 [R,L]
RewriteRule ^/(.*)-NOSSL$ http://%{SERVER_NAME}/$1 [R,L]



[ Reply to This | # ]
problem showed up in SSLOptions
Authored by: Anonymous on Jun 23, '03 04:12:20PM

Yup. I just upgraded a machine to 10.2. SSL installed per the Apple Developer article worked fine, just as it had under 10.1.5. Then, I upgraded to 10.2.6 using the combined updater and it busted. I commented out those lines and --- voila! --- it's working again.

Thanks!

Steven



[ Reply to This | # ]