19 Oct
2002
19 Oct
'02
7:02 p.m.
On Sat, 2002-10-19 at 11:08, Dylan Reinhardt wrote:
Getting Zope (2.5, anyway) to recognize the https instead of http is tricky. One common workaround is to put a DTML Doc called is_https that manually specifies whether the pages below its containing folder should be served https.
You might be better off using a different workaround, which is to put a method in the root folder called admin. This method has one line:
<dtml-call "RESPONSE.redirect('https://my_server_url/manage')
Or something like that. Make the method available to Anonymous since you don't want to start authentication until the https connection is made.
Now, you can type:
my_server_url/admin
and you're there.
Thanks Dylan, that worked perfectly. Jesse