Re: buffering / uploading large files

2015-02-01 Thread nginxuser100
Thanks Kurt. The patch compiled and got installed fine. I no longer get an unknown directive error msg. However, the client's POST request of 1.5M of data still gives me this error "413 Request Entity Too Large" even though I added "fastcgi_request_buffering off;" location / { includ

Re: Slow downloads over SSL

2015-02-01 Thread jtan
Which algorithm you use? On Mon, Feb 2, 2015 at 3:04 AM, rafaelr wrote: > Hi, > > I'm trying to find answers to a problem that I'm currently experiencing in > all my servers. Downloads offered over HTTPS are at least 4 times slower > than those delivered over HTTP. All these servers are running

Weird nginx SSL connection issues

2015-02-01 Thread Will Platnick
OK, I have an incredibly weird nginx connection issue. I have a cluster of boxes that are responsible for terminating SSL requests and passing them to a local haproxy instance for further routing. I have corosync/pacemaker setup to manage the IP addresses and failover instances if there’s an issue

Re: Slow downloads over SSL

2015-02-01 Thread B.R.
Your config snippet does not say a thing about how your server(s) handle HTTP and HTTPS. Do they serve the same content the same way? Where are performance details (including network trace)? --- *B. R.* On Sun, Feb 1, 2015 at 8:04 PM, rafaelr wrote: > Hi, > > I'm trying to find answers to a prob

Slow downloads over SSL

2015-02-01 Thread rafaelr
Hi, I'm trying to find answers to a problem that I'm currently experiencing in all my servers. Downloads offered over HTTPS are at least 4 times slower than those delivered over HTTP. All these servers are running nginx/1.6.2. Here is my nginx.conf in case someone have experienced something simila

Re: buffering / uploading large files

2015-02-01 Thread Kurt Cancemi
I have scratched up a patch from changes in tengine. I haven’t tested it but it should work. The patch applies against nginx 1.7.9. Here's the docs on the options: http://tengine.taobao.org/document/http_core.html $ wget http://nginx.org/download/nginx-1.7.9.tar.gz $ tar -xzvf nginx-1.7.9.tar.gz $

Re: SSL3_CTX_CTRL:called a function you should not call

2015-02-01 Thread 173279834462
"no OpenSSL types or functions are exposed." http://www.openbsd.org/papers/eurobsdcon2014-libressl.html Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256381,256384#msg-256384 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/ma

EC_GOST_2012_Test (warning)

2015-02-01 Thread 173279834462
nginx-1.6.2 >make [...] ec/ec_curve.c:2918:2: warning: unused variable '_EC_GOST_2012_Test' [-Wunused-const-variable] _EC_GOST_2012_Test = { ^ 1 warning generated. Perhaps its defining block is best moved to the 1.7 branch. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256383,256

patch to src/event/ngx_event_openssl.c (nginx 1.6.2)

2015-02-01 Thread 173279834462
nginx-1.6.2 >make [...] src/event/ngx_event_openssl.c:2520:9: error: implicit declaration of function 'RAND_pseudo_bytes' is invalid in C99 [-Werror,-Wimplicit-function-declaration] RAND_pseudo_bytes(iv, 16); ^ 1 error generated. patch: perl -i.bak -0p -e 's|(^#include ).*(type

SSL3_CTX_CTRL:called a function you should not call

2015-02-01 Thread 173279834462
nginx 1.6.2 + libressl 2.1.3 >tail -f [...]/port-443/*.log ==> stderr.log <== 2015/02/01 01:35:34 [alert] 15134#0: worker process 15139 exited on signal 11 2015/02/01 01:35:34 [alert] 15134#0: shared memory zone "SSL" was locked by 15139 2015/02/01 01:35:42 [alert] 15134#0: worker process 15138 e

Re: buffering / uploading large files

2015-02-01 Thread nginxuser100
Thanks Kurt. In the meantime, is there a way to access the patch? I was not able to access the link to a patch mentioned in this email thread http://trac.nginx.org/nginx/ticket/251 Thanks. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256378,256380#msg-256380 _