Re: Nginx Reverse Proxy Caching

2019-02-13 Thread Sathish Kumar
Hi All, How can I achieve caching html files only for this location context /abc/* and not for other context path. On Thu, Feb 14, 2019, 7:26 AM Sathish Kumar Hi Peter, > > Thanks, I am looking for the same solution but to enable only for html > files. > > On Thu, Feb 14, 2019, 2:02 AM Peter Bo

Re: Nginx Reverse Proxy Caching

2019-02-13 Thread Sathish Kumar
Hi Peter, Thanks, I am looking for the same solution but to enable only for html files. On Thu, Feb 14, 2019, 2:02 AM Peter Booth via nginx Satish, > > The browser (client-side) cache isn’t related to the nginx reverse proxy > cache. You can tell Chrome to not cache html by adding the following

Re: HTTP 1.0

2019-02-13 Thread Maxim Dounin
Hello! On Wed, Feb 13, 2019 at 12:12:15PM -0600, Dusty Campbell wrote: > Thanks for the help. > > > There is no way to force HTTP/1.0. You can, however, disable > > various HTTP/1.1-specific mechanisms, including keepalive and > > chunked transfer encoding, see here: > > > > http://nginx.org/r/

Re: HTTP 1.0

2019-02-13 Thread Dusty Campbell
Thanks for the help. > There is no way to force HTTP/1.0. You can, however, disable > various HTTP/1.1-specific mechanisms, including keepalive and > chunked transfer encoding, see here: > > http://nginx.org/r/keepalive_timeout > http://nginx.org/r/chunked_transfer_encoding > It appears that the

Re: Nginx Reverse Proxy Caching

2019-02-13 Thread Peter Booth via nginx
Satish, The browser (client-side) cache isn’t related to the nginx reverse proxy cache. You can tell Chrome to not cache html by adding the following to your location definition: add_header Cache-Control 'no-store'; You can use Developer Tool in Chrome to check that it is working. Peter Sent

Nginx Reverse Proxy Caching

2019-02-13 Thread Sathish Kumar
Hi All, We have Nginx in front of our Application server. We would like to disable caching for html files. Sample config file: location /abc/ { proxy_pass http://127.0.0.1:8080; } We noticed few html files get stored in Chrome local disk cache and would like to fix this issue. Can

nginx reverse proxy question

2019-02-13 Thread Thomas Schmiedl
Hello, I use the xupnpd2 mediaserver (https://github.com/clark15b/xupnpd2) on my router to transfer some HLS-streams to my TV. xupnpd2 doesn't support https (the author doesn't want add https support and I'm not a developer). I try to receive HLS-streams from this site: https://www.mall.tv/zive, w

Re: I'm about to embark on creating 12000 vhosts

2019-02-13 Thread Richard Paul
Hi Jeff, This is pretty much what I'm now looking at doing, with Some HA proxy servers behind the External Google LB and then their backend being an internal Google LB which then balances across our Varnish caching layer and eventually the Nginx app servers. Thank you for sharing your config i