Hi I found it. 

There was another host config in my setup with such a redirect:

<VirtualHost *:80 *:443>
  ServerName domainxx.com
  RedirectMatch permanent (.*) http://www.otherdomain.com$1
</VirtualHost>

When I changed it to:

<VirtualHost *:80>
  ServerName domainxx.com
  RedirectMatch permanent (.*) http://www.otherdomain.com$1
</VirtualHost>

other domains' SSL started working normally. :)

What initially confused me, that the problem appeared only for sites served 
by web2py. But I must admit that the problem really lied in the config. 
Truly, redirecting both HTTP and HTTPS requests to a HTTP site was not a 
bright idea.

David

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to