<Location "/accounts/register">Order deny,allowAllow from allProxyPass https://localhost:8000/accounts/registerProxyPassReverse https:/localhost:8000/accounts/register</Location>
<Location "/accounts/register">Order deny,allowAllow from allProxyPass https://localhost:8000/accounts/registerProxyPassReverse https:/localhost:8000/
</Location>
I am just not sure what you mean. You asking for an AlterEgo page?
> but
> I've already mentioned that setting up a DES3 cypher between the
> Apache daemon and the Web2Py daemon is completely useless overkill.
>
> Also, now you need to buy (or generate[1]) and support 2 sets of
> server certificates. One for the outward facing Apache server, and
> another pair for the Web2Py server. You can't share the cert since
> the Web2Py links are all on localhost:8000 or 127.0.0.1:8000, so the
> certificate will need to match.
I'd recommend using apache + mod_wsgi in production or apache
+mod_proxy and only one certificate.
>
> Also, it looks like you need to run 2 parallel instances of Web2Py
> (e.g. on on port 8000 for http requests, and another on port 8001 for
> https requests).
The suggestion above is to avoid this.
> I haven't tested this extensively, so there may be a
> way to get a single Web2Py instance to serve both http *and* https,
> but it doesn't look like it. If you have two parallel instances, it
> seems like there would be a host of concurrent access issues to the
> resources being served by the 2 Web2Py's. I understand that Web2Py
> was designed to run multiple simultaneous instances. But, it seems
> like it would be *waaay* easy for someone using Web2Py to implement a
> syncronization policy that would break.
Please elaborate.