On Tue, Aug 10, 2010 at 5:00 PM, Colleen A Josephson <[email protected]>wrote:
> Unfortunately I'm not very well versed in proxying and SSL, etc.
> I'm not sure I understand how mod WSGi eliminates the need for SSLRedirect.
>
> I implemented the Lincoln Loop setup, but if I go to the http:// admin
> page I am not redirected to https:// as I would like to be.
>
It would be much more efficient to redirect from nginx than django here.
Just implement something like this on your server that runs on port 80
(http):
location /admin/ {
rewrite (.*) https://$server_name$1 permanant;
}
This is just a snippit I just wrote. Let me know if it doesn't work, I will
actually go and run it.
hope that helps,
Michael
--
You received this message because you are subscribed to the Google Groups
"Django users" 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/django-users?hl=en.