ngx_brotli

2016-09-29 Thread Dewangga Bachrul Alam
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hello! Is there any best practice or some example to see how brotli compression works? I've patch the nginx using ngx_brotli[1], but I didn't see any brotli header, there's only gzip. Many thanks. [1] https://github.com/cloudflare/ngx_brotli_modul

Re: Static or dynamic content

2016-09-29 Thread Francis Daly
On Wed, Sep 28, 2016 at 11:01:36AM +, Jens Dueholm Christensen wrote: Hi there, > I've got an issue where nginx (see below for version/compile options) > returns a 405 (not allowed) to POST requests to clients when the upstream > proxy returns a 503. I don't see that, when I try to build a t

Re: location query string?

2016-09-29 Thread Francis Daly
On Wed, Sep 28, 2016 at 08:02:08PM -0700, Grant wrote: Hi there, > Can I define a location block based on the value of a query string so No. A location match does not consider a query string. > I can set a longer timeout for certain form submissions even though > all of my form submissions POST

Re: location /robots.txt conflict / issue

2016-09-29 Thread Francis Daly
On Thu, Sep 29, 2016 at 01:09:47PM -0400, c0nw0nk wrote: Hi there, The docs are at http://nginx.org/r/location In this case, you want "=". > location /robots.txt { > location ~* \.(txt|ini|xml|zip|rar)$ { A request for /robots.txt will match the second location there. > location /robots.txt {

Re: nginx multiprocess on Windows

2016-09-29 Thread hheiko
Try http://nginx-win.ecsds.eu/index.html Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269968,269970#msg-269970 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx multiprocess on Windows

2016-09-29 Thread Valentin V. Bartenev
On Thursday 29 September 2016 18:32:14 shang yu wrote: > Hi dear all, > > I'm running nginx 1.10.1 on Windows , which is configured with 2 sub > processes . I'm using ab to test the work load , found only one process is > busy (cpu usage is high) but the other process is idle (cpu usage is zero)

nginx multiprocess on Windows

2016-09-29 Thread shang yu
Hi dear all, I'm running nginx 1.10.1 on Windows , which is configured with 2 sub processes . I'm using ab to test the work load , found only one process is busy (cpu usage is high) but the other process is idle (cpu usage is zero). Why ? is it some kind of limit for nginx on Windows ? Many tha

location /robots.txt conflict / issue

2016-09-29 Thread c0nw0nk
So this is one of those issues it is most likely a bad configuration but my robots.txt file is returning a 404 because of another location because I am disallowing people to access any text files but I do want to allow only the robots.txt to be accessed. location /robots.txt { root 'location/to/ro

Re: How to enable OCSP stapling when default server is self-signed?

2016-09-29 Thread B.R.
Considering your rather old version of nginx coming from Ubuntu packages, I suggest you use the lastest stable, officially available on nginx.org . Not related to your issue, but should not hurt (except with regressions ofc ;) ). --- *B. R.* On Thu

Re: How to enable OCSP stapling when default server is self-signed?

2016-09-29 Thread hotwirez
Maxim Dounin Wrote: --- > Hello! > > On Wed, Sep 28, 2016 at 12:44:45PM -0400, hotwirez wrote: > > [...] > > > I wanted to mention that I've run into this issue as well when > trying to > > enable OCSP stapling, where I have a default_deny SSL

Re: Open Socket issue !!

2016-09-29 Thread hheiko
This happens from time to time on my proxy, reload again and the message is gone. Heiko Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269951,269952#msg-269952 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo

Open Socket issue !!

2016-09-29 Thread shahzaib mushtaq
Hi, We're facing following errors in logs, are they critical ? 2016/09/29 17:23:54 [alert] 9073#0: *190899046 open socket #21 left in connection 89 2016/09/29 17:23:54 [alert] 9073#0: *190585499 open socket #258 left in connection 112 2016/09/29 17:23:54 [alert] 9073#0: *190997493 open socket #19

Re: proxy_pass generates double slash

2016-09-29 Thread Francis Daly
On Thu, Sep 29, 2016 at 10:27:29AM +0200, rai...@ultra-secure.de wrote: Hi there, > As I found out, this is achieved by adding a slash at the end of the > proxy_pass directive. That's not quite correct. The documentation is at http://nginx.org/r/proxy_pass You almost certainly want to have the

proxy_pass generates double slash

2016-09-29 Thread rainer
Hi, I need to proxy a location and remove the location-URL at the same time. As I found out, this is achieved by adding a slash at the end of the proxy_pass directive. This works almost as intended, but it adds a double-slash to the beginning of the URL as it arrives on the other server.