On Wednesday 24 April 2002 07:44, Todd Jagger wrote:
> Example: https://www.mydomain.com/cgi/manage.cgi comes up fine.
> You enter the domain, username, passwd, and click the submit button.
> At that point the URL gets rewritten as
> https://www.mydomain.com//manage.cgi and fails with a 404 error.
There are two SSL-related config options, 'ssl_server' and 'ssl_path'.
They are concatenated at runtime, so that when SSL is required the URI
becomes:
ssl_server + / + ssl_path + / SCRIPT_NAME
For example:
ssl_server = https://www.domain.com
ssl_path = cgi
$ENV{SCRIPT_NAME} = manage.cgi
URI: https://www.domain.com/cgi/manage.cgi
I suspect that your 'ssl_path' config option is incorrect, perhaps set
as '/'.
-Regards,
Paul Sisson