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
-that-uses-ntlm proxy_http_version 1.1; proxy_set_header Connection ""; proxy_pass http:// MyNtlmService /; } } From: nginx [mailto:nginx-boun...@nginx.org] On Behalf Of Payam Chychi Sent: Friday, February 23, 2018 8:05 AM To: nginx@nginx.o

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

RE: NTLM

2018-01-10 Thread Otto Kucera
Hi Maxim, -Original message- From: Maxim Konovalov  Sent: Wednesday 10th January 2018 12:40 To: nginx@nginx.org; Otto Kucera Subject: Re: NTLM Hi Otto, On 10/01/2018 14:37, Otto Kucera wrote: > Hi all, > > > I am testing ntlm for a reverse proxy secanrio. [...] > I

Re: NTLM

2018-01-10 Thread Maxim Konovalov
Hi Otto, On 10/01/2018 14:37, Otto Kucera wrote: > Hi all, > > > I am testing ntlm for a reverse proxy secanrio. [...] > I always get this error: > > nginx: [emerg] *unknown directive "ntlm"* in > /etc/nginx/conf.d/test.conf:4 > > > This is my version: >

Re: NTLM

2018-01-10 Thread Lucas Rolff
It’s only available for nginx-plus Get Outlook for iOS From: nginx on behalf of Otto Kucera Sent: Wednesday, January 10, 2018 12:37:49 PM To: nginx@nginx.org Subject: NTLM Hi all, I am testing ntlm for a reverse proxy secanrio. Info:

Re: NTLM or HTTP Digest authentication to Parent proxy

2015-06-23 Thread Francis Daly
On Mon, Jun 22, 2015 at 04:00:51PM -0700, Russel D'Souza wrote: Hi there, > I need to configure a proxy on my machine to use another proxy (installed > on another machine) as the parent proxy. nginx is not a proxy server, and does not talk to proxy servers. > Please let me know if there is any