Re: Set browser cache to current month!

2019-01-13 Thread shahzaib mushtaq
Hi Peter, Thanks for help, can you direct me to some tutorial to help me do that ? I am new to Lua . On Mon, Jan 14, 2019 at 3:21 AM Peter Booth via nginx wrote: > If you use the openresty nginx distribution then you can write a few lines > of Lua to implement your custom logic. > > Sent from m

Re: Set browser cache to current month!

2019-01-13 Thread Peter Booth via nginx
If you use the openresty nginx distribution then you can write a few lines of Lua to implement your custom logic. Sent from my iPhone > On Jan 13, 2019, at 9:13 AM, shahzaib mushtaq wrote: > > Hi, > > We've a location like /school for which we want to set browser cache lifetime > as 'current

Re: Set browser cache to current month!

2019-01-13 Thread shahzaib mushtaq
Currently I'm using these lines to configure http caching within my Nginx: location /schools { expires 2d; add_header Cache-Control public; ... } On Sun, Jan 13, 2019 at 7:57 PM Richard Demeny wrote: > browser cache = client-side cache. > > nginx cache = server-side cache. > > Set cache expiry f

Re: Set browser cache to current month!

2019-01-13 Thread Richard Demeny
browser cache = client-side cache. nginx cache = server-side cache. Set cache expiry flag ? On Sunday, January 13, 2019, shahzaib mushtaq wrote: > Hi, > > We've a location like /school for which we want to set browser cache > lifetime as 'current month'. Suppose /school is accessed on 10th Jan

Set browser cache to current month!

2019-01-13 Thread shahzaib mushtaq
Hi, We've a location like /school for which we want to set browser cache lifetime as 'current month'. Suppose /school is accessed on 10th January, its cache should be valid until end of January not 10th February and if accessed on 25th February its validity must be until the end of February month.