How to use nginx dynamic module when proxying connections to application servers

2018-12-10 Thread mundhada
I developed a Nginx dynamic module and did required configuration in nginx.conf. Able to run that module and see it doing processing. This module reads request request header, cookies etc., does some business logic execution and modify response header then send back response to client. Problem -:

RE: Invalid character found in the request target on Confluence behind nginx

2018-12-10 Thread Dung Tran Tien
Hi there, Thanks for your feedback, below is location block. location /confluence { 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_pass http://1.1.2.1:809

Re: Invalid character found in the request target on Confluence behind nginx

2018-12-10 Thread Francis Daly
On Mon, Dec 10, 2018 at 06:43:13AM +, Dung Tran Tien wrote: Hi there, > Currently I'm using Confluene 6.10.2 behind nginx. I have some pages with the > page name including character '>' could not accessible, the error is: > But when I access the page bypassing the reverse proxy, it's ok, so

Re: In Nginx revers proxy unable to disable TLS1

2018-12-10 Thread Maxim Dounin
Hello! On Sun, Dec 09, 2018 at 11:56:33PM -0500, blason wrote: > Do you mean I need to mention in each and every reverse proxy stanza or in > default config? You have to configure ssl_protocols in the default server for the listening socket in question. As previously suggested, most simple sol