Re: How to disable fastcgi caching for the logged user?

2017-08-08 Thread Francis Daly
On Mon, Aug 07, 2017 at 04:47:30AM -0400, Etienne Robillard wrote: Hi there, > Thank you for your reply. What is the difference between: > > fastcgi_no_cache $http_pragma $http_authorization > > and > > fastcgi_no_cache $remote_user http://nginx.org/r/fastcgi_no_cache http://nginx.org/r/$http

Re: How to disable fastcgi caching for the logged user?

2017-08-07 Thread Etienne Robillard
Hi Francis, Thank you for your reply. What is the difference between: fastcgi_no_cache $http_pragma $http_authorization and fastcgi_no_cache $remote_user ? In addition, how can I verify the configuration is working as expected? Thanks, E Le 2017-08-06 à 05:48, Francis Daly a écrit : Th

Re: How to disable fastcgi caching for the logged user?

2017-08-06 Thread Francis Daly
On Sat, Aug 05, 2017 at 03:24:28PM -0400, Etienne Robillard wrote: Hi there, > The $http_pragma is not properly defined in > http://nginx.org/en/docs/varindex.html It's the one after "$http2" and before "$https". > Is that a custom variable or is defined in nginx? $http_anything is defined in

Re: How to disable fastcgi caching for the logged user?

2017-08-05 Thread Etienne Robillard
The $http_pragma is not properly defined in http://nginx.org/en/docs/varindex.html Is that a custom variable or is defined in nginx? I was hoping of doing something like: fastcgi_no_cache $http_pragma $remote_user; What do you think? E Le 2017-08-05 à 14:42, Etienne Robillard a écrit : Hi,