Re: Using pcre_jit

2016-02-16 Thread Alt
Hello, Thanks also Maxim for your answer! Best Regards Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264554,264559#msg-264559 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Using pcre_jit

2016-02-16 Thread Alt
Hello, Thanks Valentin for your answer! Best Regards Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264554,264558#msg-264558 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread Maxim Dounin
Hello! On Tue, Feb 16, 2016 at 11:59:27AM -0500, cehes wrote: > Hi hheiko, > > thanks for this update. > > i'm trying to access exchange using Outlook anywhere. > > Normaly, i would do a "proxy_pass https://ip-of-my-exchange-server"; > > Here, if i understand well, i only have to replace "ser

Re: Using pcre_jit

2016-02-16 Thread Maxim Dounin
Hello! On Tue, Feb 16, 2016 at 11:29:32AM -0500, Alt wrote: > Hello, > > To use pcre_jit ( http://nginx.org/r/pcre_jit ), is it mandatory to compile > nginx with "--with-pcre-jit"? > On FreeBSD, nginx isn't compiled with "--with-pcre-jit", but I can still use > "pcre_jit on;" without nginx throw

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread cehes
Hi hheiko, thanks for this update. i'm trying to access exchange using Outlook anywhere. Normaly, i would do a "proxy_pass https://ip-of-my-exchange-server"; Here, if i understand well, i only have to replace "server 1.1.1.1:80" in the sample i gave with "server ip-of-my-exchange-server:443" an

Re: Using pcre_jit

2016-02-16 Thread Valentin V. Bartenev
On Tuesday 16 February 2016 11:29:32 Alt wrote: > Hello, > > To use pcre_jit ( http://nginx.org/r/pcre_jit ), is it mandatory to compile > nginx with "--with-pcre-jit"? > On FreeBSD, nginx isn't compiled with "--with-pcre-jit", but I can still use > "pcre_jit on;" without nginx throwing errors. So

Using pcre_jit

2016-02-16 Thread Alt
Hello, To use pcre_jit ( http://nginx.org/r/pcre_jit ), is it mandatory to compile nginx with "--with-pcre-jit"? On FreeBSD, nginx isn't compiled with "--with-pcre-jit", but I can still use "pcre_jit on;" without nginx throwing errors. So, does nginx really use PCRE JIT in this case? This bug rep

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread Maxim Dounin
Hello! On Tue, Feb 16, 2016 at 03:37:01AM -0500, cehes wrote: > we are now 4 years later, is there a solution now ? > I read things like : > > > upstream http_backend { > server 1.1.1.1:80; > > keepalive 16; > } > > server { > ... > > location

Re: http2 enable or disable per virtual host

2016-02-16 Thread Valentin V. Bartenev
On Tuesday 16 February 2016 01:16:09 matrixmatrix wrote: > Hi the ngx_http_v2_module could not switch enable or disable per virtual > host. > Yes, that's expected behavior. > The following code, http.domainname.com is enabled http2. > > I would like to enable only the http2 of http2.domainnam

Re: Forwarding HTTPS to VM's HTTPS...

2016-02-16 Thread Miguel C
On Tue, Feb 16, 2016 at 1:14 PM, Miguel C wrote: > I have similar setups with freebsd jails... usually one the jails is a > 'frontend proxy server' which I'm guessing is what you're aiming at but > with linux containers > > Make sure the firewall allow traffic from the frontend to backends wh

Re: Forwarding HTTPS to VM's HTTPS...

2016-02-16 Thread Miguel C
I have similar setups with freebsd jails... usually one the jails is a 'frontend proxy server' which I'm guessing is what you're aiming at but with linux containers Make sure the firewall allow traffic from the frontend to backends which could be other nginx servers or just php-fpm it self dep

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread hheiko
cehes Wrote: --- > > server { > ... > > location / { >proxy_pass http://http_backend/; >proxy_http_version 1.1; >proxy_set_header Connection ""; > ... > } > } This is working fine for us, against IIS and Apache

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread cehes
Thanks for this quick reply... This seems quite hard to implement for someone like me not used with that. :) I'll try if the way described in my previous post do not work thanks again ! Posted at Nginx Forum: https://forum.nginx.org/read.php?2,72871,264552#msg-264552 __

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread itpp2012
LDAP works fine https://github.com/kvspb/nginx-auth-ldap Posted at Nginx Forum: https://forum.nginx.org/read.php?2,72871,264551#msg-264551 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: How to Windows auth working on nginx reverse proxy ???

2016-02-16 Thread cehes
Hi, we are now 4 years later, is there a solution now ? I read things like : upstream http_backend { server 1.1.1.1:80; keepalive 16; } server { ... location / { proxy_pass http://http_backend/; proxy_http_version 1.1; proxy