August 27, 2014 01:37PM
Hi All,
I'm trying to configure a reverse proxy in Nginx, which receives a HTTP request and call a HTTPS URL. When we change the config to call a HTTP it works fine, however it doesn't work with HTTPS. The http_ssl_module is installed.

Here is the error:
<HTML><HEAD>
<TITLE>Invalid URL</TITLE>
</HEAD><BODY>
<H1>Invalid URL</H1>
The requested URL "&#47;buy&#45;later&#47;buy&#45;later&#47;&#63;customerId&#61;123123", is invalid.<p>
Reference&#32;&#35;9&#46;9cd8f648&#46;1409160431&#46;4f0536
</BODY></HTML

Here goes the current version:
nginx version: nginx/1.4.6 (Ubuntu)
built by gcc 4.8.2 (Ubuntu 4.8.2-16ubuntu6)
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_spdy_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module


Here goes the config:
server {
listen 80;
server_name localhost;

location /api/v1/buy-later {
proxy_pass https://checkout.mysite.com.br/buy-later/buy-later;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header User-Agent $http_user_agent;
}
}

Any help is appreciated. Thanks!
Subject Author Posted

Error when configuring reverse proxy to HTTPs

ricardo.ekm August 27, 2014 01:37PM

Re: Error when configuring reverse proxy to HTTPs

Richard Kearsley August 27, 2014 02:36PM

Re: Error when configuring reverse proxy to HTTPs

ricardo.ekm August 27, 2014 03:30PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 257
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