I am using Django on DotCloud which uses Django on top of uwsgi + nginx. I am trying to redirect all http traffic to https which is leading to a redirect loop. I am using the following http configuration

if ($http_x_forwarded_port != 443) { rewrite ^ https://$http_host/; }

It seems that Django doesn't understand that it is operating on https and the header is not preserved. It redirects https://url.com/ to http://url.com/accounts/login/ which is redirecting again and again leading to a redirect loop. I am not really an expert in nginx and do not understand it well enough. What can I be doing wrong?

In short how do I run redirect http to https in django running on top of uswsgi and nginx.

link|improve this question

60% accept rate
3  
try reading through this - yuji.wordpress.com/2008/08/15/… – Vidyanand Jul 21 '11 at 23:09
feedback

2 Answers

up vote 2 down vote accepted
if ( $scheme = "http" ) {
     rewrite ^/(.*)$   https://$host/ permanent;
}
link|improve this answer
feedback
server {
listen  80;
server_name  yourhttphost;
rewrite ^ https://yourhttpshost$request_uri? permanent; #301 redirect
}
server {
    listen 443;
    server_name  yourhttpshost;
    ........
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.