> Well, on IIS this is easy, you check "redirect this site to another
> website" and enter the HTTPS URL.
>
> For Apache, I would use mod_rewrite. In the HTTP port's config you'd do
> something like:
>
> RewriteEngine on
> RewriteRule .*https://yoursite.com/[R]
>
> Paul
Hi Paul,
Thanks a lot! Following your suggestions, and searching in the NginX
mailing list did the trick. The configuration code for NginX (might be
helpful to somebody like me) is:
server {
listen 80;
rewrite ^(.*) https://site.com$1 redirect;
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---