Re: NTLM sharepoint when use nginx reverse proxy

2018-03-04 Thread sonpg
i try to using diffirent port but sharepoint site get error: ERR_EMPTY_RESPONSE stream { upstream ecm { hash $remote_addr consistent; server ecm.test.vn:80 weight=5; server 10.68.8.182:80max_fails=3 fail_timeout=30s;

Re: NTLM sharepoint when use nginx reverse proxy

2018-03-02 Thread Francis Daly
On Fri, Mar 02, 2018 at 05:30:00AM -0500, sonpg wrote: Hi there, > my design is : enduser --> nginx --> sites (sharepoint site:443, web:80; > 443) > if server listen in 80 will redirect to 443 That seems generally sensible. > i try to use stream block but it can't use same port. Ah: you have

Re: NTLM sharepoint when use nginx reverse proxy

2018-03-02 Thread sonpg
my design is : enduser --> nginx --> sites (sharepoint site:443, web:80; 443) if server listen in 80 will redirect to 443 i try to use stream block but it can't use same port. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,278737,278885#msg-278885

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: 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: 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;

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-23 Thread Jason Whittington
rg Subject: [IE] Re: NTLM sharepoint when use nginx reverse proxy On Fri, Feb 23, 2018 at 4:32 AM Francis Daly mailto:fran...@daoine.org>> wrote: On Fri, Feb 23, 2018 at 04:15:31AM -0500, sonpg wrote: Hi there, > myserver requires NTLM authentication. I access myserver through nginx proxy >

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-23 Thread Payam Chychi
On Fri, Feb 23, 2018 at 4:32 AM Francis Daly wrote: > On Fri, Feb 23, 2018 at 04:15:31AM -0500, sonpg wrote: > > Hi there, > > > myserver requires NTLM authentication. I access myserver through nginx > proxy > > and provide correct auth info,but the browser prompt auth again. > > http://nginx.org

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-23 Thread Francis Daly
On Fri, Feb 23, 2018 at 04:15:31AM -0500, sonpg wrote: Hi there, > myserver requires NTLM authentication. I access myserver through nginx proxy > and provide correct auth info,but the browser prompt auth again. http://nginx.org/r/ntlm nginx does not support NTLM authentication. If you need som

Re: NTLM sharepoint when use nginx reverse proxy

2018-02-23 Thread sonpg
myserver requires NTLM authentication. I access myserver through nginx proxy and provide correct auth info,but the browser prompt auth again. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,278737,278738#msg-278738 ___ nginx mailing list ngin

NTLM sharepoint when use nginx reverse proxy

2018-02-23 Thread sonpg
Hi everyone, I have issue with authentication when use nginx reverse proxy. it always require input user/pass my config file: # upstream test.com { server test.com; keepalive 16; } server { listen 80; server_name test.com; location / {