Re: Nginx as proxy for Exchange 2013 : RPC?

2016-02-14 Thread jbostoen
I've had most success so far with this approach (Tigunov's config - https://gist.github.com/taddev/7275873). ( btw, I'm using Basic Authentication rather than NTLM ). server { server_name mail.contoso.com; server_name autodiscover.contoso.com; keepalive_timeout 3h; proxy_read_timeout 3h; #reset_

Re: Nginx as proxy for Exchange 2013 : RPC?

2016-02-13 Thread jbostoen
So I just need a stream and proxy_pass it to our Exchange? (I'm new to Nginx, haven't seen stream config before; we're using SSL for everything). Also, is it possible to have a combination? The deal is: the current setup in our company is only 1 public IP address for a couple of services. Which

Re: Nginx as proxy for Exchange 2013 : RPC?

2016-02-13 Thread itpp2012
If data is a tcp stream use stream, if not then a http {} block should work. https://forum.nginx.org/read.php?2,14903,35128#msg-35128 http://windowsitpro.com/exchange-server-2013/exchange-server-2013-transition-rpc-http Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264518,264522#msg-

Re: Nginx as proxy for Exchange 2013 : RPC?

2016-02-13 Thread jbostoen
It doesn't seem to mention the RPC (not RDP)? Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264518,264520#msg-264520 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx as proxy for Exchange 2013 : RPC?

2016-02-13 Thread itpp2012
https://forum.nginx.org/read.php?11,261682,261769 Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264518,264519#msg-264519 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Nginx as proxy for Exchange 2013 : RPC?

2016-02-13 Thread jbostoen
I've been searching the internet and tried a few approaches, but I was wondering: Is it possible to use Nginx (non-plus edition) as a proxy for Exchange (2013) - in particular: RPC. I did manage to get the other stuff working. Maybe by installing/enabling a (free) module? If so, would someone b