Re: gzip_types

2018-08-23 Thread Maxim Dounin
Hello! On Thu, Aug 23, 2018 at 11:21:02AM +, Friscia, Michael wrote: > What would be the reason that setting > Gzip_types *; > Is bad? Usually there are responses which are not compressible, so trying to gzip them is just a waste of resources. Also there can be cases when the client annou

Re: nginx for windows - reg

2018-08-23 Thread Maxim Dounin
Hello! On Wed, Aug 22, 2018 at 03:06:27PM +0530, K Dinesh Babu wrote: >1. Is nginx for windows stable?(I read here > that it is in beta) The information on https://nginx.org/en/docs/windows.html is actual. That is, nginx/Windows is in beta and ha

Re: Build nginx for ARMV7l

2018-08-23 Thread Maxim Dounin
Hello! On Thu, Aug 23, 2018 at 12:55:16PM -0400, shepardeg wrote: > Good afternoon, community! There was a need to compile nginx under the > ARMV7L platform, but the guides on the links do not help. > https://superuser.com/questions/1098001/nginx-on-armv7l-installation > or this > http://tiebin

Build nginx for ARMV7l

2018-08-23 Thread shepardeg
Good afternoon, community! There was a need to compile nginx under the ARMV7L platform, but the guides on the links do not help. https://superuser.com/questions/1098001/nginx-on-armv7l-installation or this http://tiebing.blogspot.com/2014/09/cross-compile-nginx-for-arm.html Maybe there is anot

Re: Proxy_Protocol with local Proxy_Pass to local secondary nginx process

2018-08-23 Thread Joseph Wonesh
Thank you for your reply, Roman. It turns out the issue was adding the various proxy and forwarded headers in that entry. Changing it to the below block fixed my issue: #send to non-websocket process location / { proxy_pass http://localhost:8082; proxy_set_header Host $host;

gzip_types

2018-08-23 Thread Friscia, Michael
What would be the reason that setting Gzip_types *; Is bad? I’m running into a compression problem and if I set it to * everything gzips just fine but if I list them out explicitly the type image/jpeg is not being gzip’d via proxy request but all others are gzip’d by proxy. Gzip_proxied is set

Re: Proxy_Protocol with local Proxy_Pass to local secondary nginx process

2018-08-23 Thread Roman Arutyunyan
Hello Joseph, On Wed, Aug 22, 2018 at 10:24:23AM -0400, Joseph Wonesh wrote: > Hello, > > I am trying to route requests such that those requiring websockets will > route to a long-lived nginx process, and all others will go to the general > reverse-proxy which handles all other traffic. These ngi