[no subject]

2018-02-25 Thread pritam chavan
Hi All, I am using open source NGINX as reverse proxy. There are certain URL which have URL parameters. I am getting following error while accessing this URL. 2018/02/22 15:11:08 [error] 1606#0: *21 upstream sent invalid chunked response while reading upstream, client: 10.109.1.4, server: XXX.XX

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-25 Thread Payam Chychi
On Sun, Feb 25, 2018 at 1:18 PM Francis Daly wrote: > On Sun, Feb 25, 2018 at 11:34:17AM -0500, sonpg wrote: > > Hi there, > > > i using nginx to reverse proxy for sharepoint site: ecm.test.com:80 and > > redirect test.com:80 to https://test.com:443. > > it show "nginx: [emerg] bind() to 0.0.0.0:

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-25 Thread Francis Daly
On Sun, Feb 25, 2018 at 11:34:17AM -0500, sonpg wrote: Hi there, > i using nginx to reverse proxy for sharepoint site: ecm.test.com:80 and > redirect test.com:80 to https://test.com:443. > it show "nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in > use)" You have something othe

Re: Routing based on ALPN

2018-02-25 Thread Wiktor Kwapisiewicz via nginx
>> Is there a way to access and save ALPN value to a variable? > > It should possible to parse the incoming buffer with > https://nginx.org/r/js_filter and create a variable to make a routing > decision on. > Excellent idea for quickly solving this problem, thanks! Would a long term solution

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-25 Thread sonpg
here is my issue, i using nginx to reverse proxy for sharepoint site: ecm.test.com:80 and redirect test.com:80 to https://test.com:443. it show "nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)" Posted at Nginx Forum: https://forum.nginx.org/read.php?2,278737,278753#msg-27

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-25 Thread Francis Daly
On Sun, Feb 25, 2018 at 04:40:36AM -0500, sonpg wrote: Hi there, > i try and it work but have new issue. Some site i need redirect from port 80 > to 443 and it use same port 80 with sharepoint site What request do you make? What response do you get? What response do you want to get instead?

Re: Jenkins reverse proxy on single domain with multiple apps

2018-02-25 Thread Francis Daly
On Sun, Feb 25, 2018 at 03:08:28AM -0500, kefi...@gmail.com wrote: Hi there, > I am trying to setup a reverse proxy on a single domain to host multiple > apps separated by URI, for example: > http://localhost/app1 > http://localhost/app2 > etc. You will be much happier if your nginx/app1/ applic

Re: Jenkins reverse proxy on single domain with multiple apps

2018-02-25 Thread Aziz Rozyev
Hi, compare the output of curl -ivvv http://jenkins:8080 curl -ivvv http://localhost/jenkins then curl -iLvvv http://jenkins:8080 curl -iLvvv http://localhost/jenkins pay attention on the cookie headers. java based applications usually may set session cookies and you should handle th

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-25 Thread sonpg
i try and it work but have new issue. Some site i need redirect from port 80 to 443 and it use same port 80 with sharepoint site My code is: events { worker_connections 1024; } stream { upstream ecm.test.com { hash $remote_addr consistent; server ecm.test.com:81 weight=5;

Jenkins reverse proxy on single domain with multiple apps

2018-02-25 Thread kefi...@gmail.com
Hello, I am trying to setup a reverse proxy on a single domain to host multiple apps separated by URI, for example: http://localhost/app1 http://localhost/app2 etc. Right know having problems with reverse proxy jenkins which sends HTML page in HTTP reply with relative paths eg. /static/abc/css/co