Re: feature request: smtp auth passthrough

2014-04-21 Thread guyguy333
Here you can find my patch to add SMTP AUTH LOGIN to backend server : https://github.com/guyguy333/nginx/commit/09ac17efa8cc28bf758d03ddafbccea663fa4779 Posted at Nginx Forum: http://forum.nginx.org/read.php?2,245939,249425#msg-249425 ___ nginx mailing

Re: X-Real-Proto ?

2014-04-21 Thread Igor Sysoev
On Apr 21, 2014, at 15:47 , Igor Sysoev wrote: > On Apr 21, 2014, at 15:03 , etienne.champet...@free.fr wrote: > >> Hi, >> >> There is ngx_http_realip_module to have the real ip in nginx when you are >> behind a load balancer >> If the load balancer is also terminating the ssl, and connecting t

Re: X-Real-Proto ?

2014-04-21 Thread Igor Sysoev
On Apr 21, 2014, at 15:03 , etienne.champet...@free.fr wrote: > Hi, > > There is ngx_http_realip_module to have the real ip in nginx when you are > behind a load balancer > If the load balancer is also terminating the ssl, and connecting to nginx > with http, how to set the real proto ? proxy_

X-Real-Proto ?

2014-04-21 Thread etienne . champetier
Hi, There is ngx_http_realip_module to have the real ip in nginx when you are behind a load balancer If the load balancer is also terminating the ssl, and connecting to nginx with http, how to set the real proto ? Thanks in advance Etienne ___ nginx

Re: Problem with http/https interoperation

2014-04-21 Thread Maxim Dounin
Hello! On Mon, Apr 21, 2014 at 04:14:18PM +0800, Benimaur Gao wrote: > Hello, all > > I have a web application, which use nginx as frontend reverse-proxy > sever. It's configured to use https to interact with user agent. Several > tomcats are used as backend application servers. The connecti

Re: How to save into variable proxy header response?

2014-04-21 Thread Maxim Dounin
Hello! On Sun, Apr 20, 2014 at 05:29:10AM -0400, google000 wrote: > I have tryeid to do something like this but it seems that variable > $upstream_http_content_disposition is empty.. when I want to redirect to > different url.. > > proxy_pass http://www.domainresultget.com; > set $x $upstream_ht

For sale USRP N210

2014-04-21 Thread Swarts Ette
USRP N210 The N210 radio comes with LFTX, LFRX, WBX, and SBX draughtboards. 4 Antennas 2 VERT900s and 2 VERT2450s. Asking: $1800. Email: kf5...@yahoo.com What is your full name and address for shipping? I can ship worldwide. -- Posted via http://www.ruby-forum.com/. __

Re: nginx ssl handshake vs apache

2014-04-21 Thread Igor Sysoev
On Apr 21, 2014, at 12:46 , Igor Sysoev wrote: > On Apr 20, 2014, at 21:17 , Lukas Tribus wrote: > >>> Hi >>> >>> I was watching this video by fastly ceo http://youtu.be/zrSvoQz1GOs?t=24m44s >>> he talks about the nginx ssl handshake versus apache and comes to the >>> conclusion that apache was

Re: how to allow apache to control SSL traffic ?

2014-04-21 Thread Joydeep Bakshi
Hello Jonathan, thanks for your response. Here is the details what I have done so far. SSL configuration for nginx is as below server { listen 443 ssl; server_name example.com ; gzip on; # Turn on gZip gzip_disable msie6; gzip_static on; gzip_comp_level 9; gzip_pro

Re: how to allow apache to control SSL traffic ?

2014-04-21 Thread Joydeep Bakshi
Hello Jonathan, thanks for your response. Here is the details what I have done so far. SSL configuration for nginx is as below server { listen 443 ssl; server_name example.com ; gzip on; # Turn on gZip gzip_disable msie6; gzip_static on; gzip_comp_level 9; gzip_pro

Re: how to allow apache to control SSL traffic ?

2014-04-21 Thread Jonathan Matthews
On 21 Apr 2014 07:01, "Joydeep Bakshi" wrote: > > Hello list, > > My apache vhosts are configured to take care of SSL connections. I have installed nginix as http accelerator. How can I instruct nginx to pass all SSL request to apache SSL vhost ? Most simply, try stopping nginx listening on port

Re: nginx ssl handshake vs apache

2014-04-21 Thread Igor Sysoev
On Apr 20, 2014, at 21:17 , Lukas Tribus wrote: >> Hi >> >> I was watching this video by fastly ceo http://youtu.be/zrSvoQz1GOs?t=24m44s >> he talks about the nginx ssl handshake versus apache and comes to the >> conclusion that apache was more efficient at mass handshakes due to >> nginx blockin

Re: how to allow apache to control SSL traffic ?

2014-04-21 Thread Joydeep Bakshi
Hello, I like to mention the following error from nginx log *453 SSL_do_handshake() failed (SSL: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol) while SSL handshaking to upstream though the ssl is working fine with apache along (after proper modification in apache vhost ) wh

Problem with http/https interoperation

2014-04-21 Thread Benimaur Gao
Hello, all I have a web application, which use nginx as frontend reverse-proxy sever. It's configured to use https to interact with user agent. Several tomcats are used as backend application servers. The connection between nginx and tomcats is http. The network structure is illustrated as fol