Hi, >Novice question again - how do you redirect the HTTP port to HTTPS? I >am thinking to folllow the same approach for the time being, as other >approaches seem beyond my skills. I am using NginX (on Fedora 5). > > 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 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

