But we only receive this error when we request the jquery file over https? Requesting other js files over HTTPS work fine and all HTTP requests work successfully too? I feel like gzip combined with HTTPS is generating problems causing this timeout?by mikeyb7 - How to...
Thanks we just tried enabling gzip for javascript files: gzip on; gzip_types application/javascript text/javascript; But the same thing happened. This is the error we get from nginx: 2016/09/20 15:37:31 25#25: *874574 upstream prematurely closed connection while reading response header from upstream Any more ideas? Thanks, Mikeby mikeyb7 - How to...
Hi, We're currently implementing nginx into our stack as a proxy which sits above our web servers. We've come across an issue which i'm struggling to understand fully. We haven't enabled gzip in our nginx.conf but we have enabled compression server wide in IIS. The issue is that all HTTPS requests for our bundled jquery file are timing out or responsing in about 60+ secs. If I request theby mikeyb7 - How to...
Hi everyone, I'm hoping someone can help me with the following problem: I'm trying to build up the url used in proxy_pass so it can handle multiple brands and team names in our dev environment. My nginx.conf file looks like this: events { worker_connections 1024; } http { server { listen 80; server_name ~^(www\.)?(?<brand>\w+)\.(?<team>\w+)\..*$;by mikeyb7 - How to...