Im trying to disable nginx cache. I use Wnmp ( https://bitbucket.org/x64architecture/windows-nginx-mysql-php ), and every time I reload any php file, I need to wait a few minutes for the changes to be reflected in the browser. I tried to make some changes to nginx.conf, but to no avail. Here is my nginx.conf:
worker_processes 1; error_log logs/error.log; pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; access_log logs/access.log; sendfile off;
thanks
source share