How to SSL encrypt a particular URL on web server?
am 09.10.2007 02:42:09 von FredAfter compiling and installing apache with mod_ssl, I run apachectl
startssl. I Then access a URL on my server site http://myserver.net.
I then enter a user name and password in a login form, and click submit.
I then wind up at a URL on the same server like:
http://myserver.net/cgi-bin/myscript.cgi?NAME=default.htm+11 94532686+6942&SY...
I want the above URL to be encrypted, so I added this Location directive:
SSLCipherSuite HIGH:MEDIUM
I thought this would encrypt anything running out of the cgi-bin path, but
it does not seem to work. How can I make the above URL encrypted so it's
accessed as a secure site with an 's' like:
https://myserver.net/cgi-bin/myscript.cgi?NAME=default.htm+1 194532686+6942&SY...
-Thanks