Сервер Nginx (не отображаются изменения) – Удалить кеш?

Я запускаю сайт Laravel (Ubuntu) на Nginx (не виртуальную коробку). Когда я вношу изменения в файл css или любой файл, я не могу сразу увидеть изменения. Я пробовал изменить файл sendfile с on на off, как указано в этой ссылке:

Как очистить кеш nginx?

И я не могу найти файл кеша Nginx для удаления кеша. Многие сайты рекомендуют перейти в папку «путь / кэш», но я не могу найти его:

https://www.nginx.com/blog/nginx-caching-guide/

Во всяком случае, я не верю, что я создал какое-либо кэширование прокси или что-то еще. Любые идеи, где я могу найти свой кеш, чтобы я мог удалить его? В этом отношении я собираюсь сделать правильную вещь здесь? Спасибо за ответ заранее.

Это то, что выглядит блок тестового сервера:

server { # secure website with username and password in htpasswd file auth_basic "closed website"; auth_basic_user_file /tmp/.htpasswd.txt; listen (myip) default_server; listen [::]:83 default_server ipv6only=on; root /var/www/test/(sitefolder); index index.php index.html index.htm; # Make site accessible server_name (myiphere); location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ /index.php?$query_string; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules } location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } 

Вот как выглядит мой реальный блок сервера сайта:

 server { # secure website with username and password in htpasswd file auth_basic "closed website"; auth_basic_user_file /tmp/.htpasswd.txt; listen (myip) default_server; listen [::]:81 default_server ipv6only=on; root /var/www/(mysite)/public; index index.php index.html index.htm; # Make site accessible from http://localhost/ server_name (myip); location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ /index.php?$query_string; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules } location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }