Re: 413 Request Entity Too Large

2016-08-11 Thread itpp2012
The 413 is coming from your backend. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,268922,268923#msg-268923 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

413 Request Entity Too Large

2016-08-11 Thread parthi
have tried adding client_max_body_size 200M; inside all the context http, server and location but still users are unable to upload a file of size 30 MB and receive the above 413 request entity error.is there something i'm missing? reloaded and restarted but still no use.is there a bug or something

Re: ngx_http_limit_req_module questions

2016-08-11 Thread siddharth78
hi - did you ever get a response for this? did you end up using ngx_http_limit_req_module or something else? Posted at Nginx Forum: https://forum.nginx.org/read.php?2,245334,268921#msg-268921 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.

Re: ssl_trusted_certificate usage with parallel ECDSA / RSA certificates ?

2016-08-11 Thread Sergey Kandaurov
> On 11 Aug 2016, at 16:03, li...@ssl-mail.com wrote: > > I've created 2 LetsEncrypt SSL certs -- an EC & and RSA. > > Following > > Support for parallel ECDSA / RSA certificates > https://trac.nginx.org/nginx/ticket/814 > ssl_trusted_certificate is orthogonal to multiple certif

ssl_trusted_certificate usage with parallel ECDSA / RSA certificates ?

2016-08-11 Thread lists
I've created 2 LetsEncrypt SSL certs -- an EC & and RSA. Following Support for parallel ECDSA / RSA certificates https://trac.nginx.org/nginx/ticket/814 I config ssl_certificate "/etc/letsencrypt/live/example.com/fullchain.ec.pem"; ssl_certificate_key

Re: "ngx.var.remote_addr" have different value when retrive it twice in lua

2016-08-11 Thread 杨秉武
I guess that the question is about the lua variable scope rather than nginx. you should give the simplest lua script to reproduce the question in the mail. About lua variable scope, you can take a look at this writen by agentzh:)

"ngx.var.remote_addr" have different value when retrive it twice in lua

2016-08-11 Thread 石磊
Hi, I am using nginx 1.4, and I did fetch the "ngx.var.remote_addr" more than once in lua script, but strange thing is sometimes I will get different “$remote_addr” in different line in the same lua script file. Some more information: 1. I hook the lua script at rewrite_by_lua_file stage