hi Maxim , Your answer is right and thank you for it. I applied it with small correction. set $modified_uri $request_uri; if ($modified_uri ~ "^/gateway(/.*)") { set $modified_uri $1; } proxy_pass http://upstream$1; Thank you, Malinthaby malintha - Nginx Mailing List - English
I am accessing a URL which has encode characters http:....../malintha/tel%3A%2B6281808147137 location /gateway/ { 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 Host $http_host; proxy_read_timeout 5m; proxy_send_timeout 5m; proxy_pass htby malintha - Nginx Mailing List - English
Hi, I have two java based servers. We call it server A and server B. I can call directly from A to B server. Then I configured call server A to server B though nginx instance. Then I get following error. TID: [0] [2015-02-03 15:17:05,736] INFO {org.apache.axis2.transport.http.HTTPSender} - Unable to sendViaPost to url {org.apache.axis2.transport.http.HTTPSender} org.apache.axis2.AxisFaulby malintha - Nginx Mailing List - English
Hi, Yes it was because of selinux. it configured it and now working fine.thanksby malintha - Nginx Mailing List - English
Hi, My nginx configurations are as follows. I am going to connect running server UI from my machine through nginx. server { listen 443; server_name mgt.wso2bps.malintha.com; ssl on; ssl_certificate /etc/nginx/ssl/wso2bps.crt; ssl_certificate_key /etc/nginx/ssl/wso2bps.key; location / { proxy_pass https://10.1.1.1:9443/carbon; } } Server iby malintha - Nginx Mailing List - English