Re: Nginx Deployments in Practice

2013-12-11 Thread Yichun Zhang (agentzh)
Hello! On Wed, Dec 11, 2013 at 5:55 PM, 54chen wrote: > Omnibus seems use AgentZh's ngx tar.gz. Just a side note: please never never put capital letters into my nick because I hate that. If you really want to capitalize names, please use my first name, Yichun, instead. Thank you for the cooperati

Re: Nginx Deployments in Practice

2013-12-11 Thread 54chen
Omnibus seems use AgentZh's ngx tar.gz. See https://github.com/bakins/omnibus-nginx/blob/master/config/software/nginx.rb 2013/12/11 Jeffrey Walton > 2013/12/11 Brian Akins : > > I build packages using omnibus - https://github.com/bakins/omnibus-nginx > > > Thanks Brian. It appears omnibus-nginx

Re: alias

2013-12-11 Thread Francis Daly
On Wed, Dec 11, 2013 at 08:20:51PM +, Matthew Ngaha wrote: > > On Tue, Dec 10, 2013 at 10:17:25PM +, Matthew Ngaha wrote: > > That suggests that the configuration you are editing, and the > > configuration that nginx is using, are not the same. > /home/matthew/src/nginx-1.4.3/conf/nginx.c

Re: Imap proxy

2013-12-11 Thread Maxim Dounin
Hello! On Wed, Dec 11, 2013 at 01:12:26PM -0500, volga629 wrote: > Hello Maxim, > Usually is normal setup of EOip tunnels though transport ipsec (transparent > lan). And from security prospective the most bigger threat is coming from > inside. Outside intrusion possible, but it match more compli

Re: alias

2013-12-11 Thread Matthew Ngaha
> On Tue, Dec 10, 2013 at 10:17:25PM +, Matthew Ngaha wrote: >> The problem i've been having after looking in the error logs,is that >> it's still trying to find /admin/ in the default html root. > > That suggests that the configuration you are editing, and the > configuration that nginx is us

Re: Imap proxy

2013-12-11 Thread volga629
Hello Maxim, Usually is normal setup of EOip tunnels though transport ipsec (transparent lan). And from security prospective the most bigger threat is coming from inside. Outside intrusion possible, but it match more complicated. I confirm that plain 143 proxy working good. I just wonder about thi

Re: [Patch] possible mutex starvation issue affects all nginx Linux versions.

2013-12-11 Thread Maxim Dounin
Hello! On Wed, Dec 11, 2013 at 07:57:32AM -0500, itpp2012 wrote: [...] > A) about the added line ngx_accept_mutex_held=0 in ngx_event.c [...] > The line above, between 259 and 260, tried to fix this too, but, there, a > call to ngx_disable_accept_events(...) is missing. > In fact to be complet

Re: Hg checkout missing config and friends

2013-12-11 Thread Piotr Sikora
Hey, > $ ./config > -bash: ./config: No such file or directory ./auto/configure Best regards, Piotr Sikora ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: OpenSSL Locks

2013-12-11 Thread Jeffrey Walton
On Wed, Dec 11, 2013 at 10:25 AM, Maxim Dounin wrote: > Hello! > > On Wed, Dec 11, 2013 at 05:55:16AM -0500, Jeffrey Walton wrote: > >> I need to do some additional processing with OpenSSL in a custom >> module. I noticed ngingx does not set any locks in ngx_ssl_init (from >> ngx_event_openssl.c).

Re: OpenSSL Locks

2013-12-11 Thread Maxim Dounin
Hello! On Wed, Dec 11, 2013 at 05:55:16AM -0500, Jeffrey Walton wrote: > I need to do some additional processing with OpenSSL in a custom > module. I noticed ngingx does not set any locks in ngx_ssl_init (from > ngx_event_openssl.c). > > A few questions: > > 1) Should lock installation be guard

Hg checkout missing config and friends

2013-12-11 Thread Jeffrey Walton
I performed a checkout to the latest stable: $ hg clone http://hg.nginx.org/nginx -u "release-1.4.4" I tried to run config, and it appears to be missing: $ ./config -bash: ./config: No such file or directory $ nginx-release-1.4.4$ ls autoconfcontribdocsmiscsrc The

Re: [Patch] possible mutex starvation issue affects all nginx Linux versions.

2013-12-11 Thread itpp2012
>From the patch author: Hi Maxim, I apologize for my late reply: I just had now time to sort this out. The short answer to your remarks is: the first patch is partially correct, just incomplete, and could be easily completed with the addition of a call to ngx_disable_accept_events(...) addressin

Re: Nginx Deployments in Practice

2013-12-11 Thread Jeffrey Walton
2013/12/11 Brian Akins : > I build packages using omnibus - https://github.com/bakins/omnibus-nginx > Thanks Brian. It appears omnibus-nginx does not contain the nginx sources. Is it safe to assume you provide them? What version of nginx do you currently use? Do you have any custom code that might

Re: Subdomains no longer work

2013-12-11 Thread Peleke
Thanks for the DNS hint, my provider must have done something wrong, now it is fixed, great! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244807,245415#msg-245415 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listi

Re: Nginx Deployments in Practice

2013-12-11 Thread Brian Akins
I build packages using omnibus - https://github.com/bakins/omnibus-nginx ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: $_SERVER['QUERY_STRING'] plus-signs and whitespace

2013-12-11 Thread smallfish
'+' in url equla ' ' (base64). if value has '+', you must encode it. example: $a = "1+1"; echo urlencode($a); the correct url is: "http://x.com/?test=1%2B1"; -- smallfish http://chenxiaoyu.org On Wed, Dec 11, 2013 at 6:19 PM, basti wrote: > Hello, > I have the following Problem with Nginx 1

OpenSSL Locks

2013-12-11 Thread Jeffrey Walton
I need to do some additional processing with OpenSSL in a custom module. I noticed ngingx does not set any locks in ngx_ssl_init (from ngx_event_openssl.c). A few questions: 1) Should lock installation be guarded on NGX_THREADS or something else? 2) Where is most appropirate to initialize the lo

$_SERVER['QUERY_STRING'] plus-signs and whitespace

2013-12-11 Thread basti
Hello, I have the following Problem with Nginx 1.2.1-2.2 running on 3.2.0-4-amd64 #1 SMP Debian 3.2.41-2 x86_64 GNU/Linux A String like $_SERVER['QUERY_STRING'] = test=1+2 will get $_GET['test'] = 1 2 I have found the following: |$_GET||[||"q"||] = ||strtr||(||$_GET||[||"q"||], ||"+"||, ||" "||);

Re: Upstrea/ Keepalive strange behaviour

2013-12-11 Thread David DONCHEZ
Hello Maxim, > > As per HTTP specification, persistent connection can be closed by > the server at any time, and clients should handle this. That is, > that's more or less normal, and nginx is expected to handle this > fine by using another upstream server if this happens. > Thanks for you