https to http error "too many redirects"

jinwon42 nginx-forum at nginx.us
Fri Mar 20 08:08:19 UTC 2015


Thanks for reply!

But, I still saw error.

400 Bad Request
The plain HTTP request was sent to HTTPS port

this setting is wrong?



    map $request_uri $example_org_preferred_proto {
	default "https";
	~^/mobile/PayOnlyResult.do "http";
	~^/kor/companyBrand.do "http";
    }

    server {
        listen	443 ssl;
	listen	80;
        server_name  www.aaa.com;

	charset utf-8;

        ssl                  on;
        ssl_certificate      D:/nginx-1.5.2/ssl/cert.pem;
        ssl_certificate_key  D:/nginx-1.5.2/ssl/key.pem;
	ssl_verify_client off;

	if ($scheme != $example_org_preferred_proto) {
		return 301 $example_org_preferred_proto://$server_name:88$request_uri;
	}

        location / {
           proxy_set_header Host                $host;
           proxy_set_header X-Real-IP            $remote_addr;
           proxy_set_header X-Forwarded-Host    $host;
           proxy_set_header X-Forwarded-Server    $host;
           proxy_set_header X-Forwarded-For       
$proxy_add_x_forwarded_for;
	   proxy_set_header X-Forwarded-Proto 	$scheme;
           proxy_set_header        Host $http_host;
	   proxy_buffering off;
           proxy_connect_timeout 60;
           proxy_read_timeout 60;
           proxy_pass   http://wwwaaaacom;
	   proxy_ssl_session_reuse off;
        }
    }

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,257458,257467#msg-257467



More information about the nginx mailing list