We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254d4d9 commit 26c44a9Copy full SHA for 26c44a9
install/deb/templates/web/nginx/php-fpm/drupal-composer.stpl
@@ -67,6 +67,13 @@ server {
67
fastcgi_param SCRIPT_FILENAME $request_filename;
68
include /etc/nginx/fastcgi_params;
69
include %home%/%user%/conf/web/%domain%/nginx.fastcgi_cache.conf*;
70
+ set $no_cache 0;
71
+ if ($request_uri ~* "/user/|/admin/|index.php") {
72
+ set $no_cache 1;
73
+ }
74
+ if ($http_cookie ~ SESS) {
75
76
77
}
78
79
location ~ ^/sites/.*/files/styles/ {
0 commit comments