Welcome! Log In Create A New Profile

Advanced

Re: https redirect going to infinite loop

July 12, 2013 02:50AM
Hello Francis,

Thanks for the quick reponse. Here is the snipet of the config being used

#############################################################################

http {
include mime.types;
default_type application/octet-stream;

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log /app/nginx/logs/access.log main;

proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;

upstream my-backend {
server 127.0.0.1:9000;
}


server {
listen 80;
server_name example.com;

location / {
rewrite ^(.*) https://example.com permanent;
proxy_pass http://my-backend;
}
}

#############################################################################

the output of curl -i http://example.com

curl: (7) couldn't connect to host

The loadbalancer is in the different DMZ it will sent the request on port 80 & 443 to nginx server on port 80. The loadbalancer urls are http://example.com & https://example.com both are working.

Please let me know if any other information is required.


Regards,
Parul Sood
Subject Author Posted

https redirect going to infinite loop

parulsood85 July 11, 2013 07:27AM

Re: https redirect going to infinite loop

Francis Daly July 11, 2013 06:16PM

Re: https redirect going to infinite loop

parulsood85 July 12, 2013 02:50AM

Re: https redirect going to infinite loop

parulsood85 July 12, 2013 02:50AM

Re: https redirect going to infinite loop

Francis Daly July 12, 2013 04:12AM

Re: https redirect going to infinite loop

parulsood85 July 12, 2013 05:08AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 121
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready