diff --git a/http/Provision/Service/http/nginx_legacy_include.conf b/http/Provision/Service/http/nginx_legacy_include.conf index 304a0ea594be31ce9eefa933f2662542f7182a04..36e209c3a8d5851ed71a6a6d18c6a09e7770eda1 100644 --- a/http/Provision/Service/http/nginx_legacy_include.conf +++ b/http/Provision/Service/http/nginx_legacy_include.conf @@ -231,6 +231,7 @@ location ^~ /civicrm { if ($is_bot) { return 403; } + access_log off; set $nocache_details "Skip"; try_files $uri @drupal; } diff --git a/http/Provision/Service/http/nginx_modern_include.conf b/http/Provision/Service/http/nginx_modern_include.conf index f1b881f05ee60f8c4b660981b75f6c2b408e9e4d..f943787342623a5fd7eb95b7fd6794c83b5a4a13 100644 --- a/http/Provision/Service/http/nginx_modern_include.conf +++ b/http/Provision/Service/http/nginx_modern_include.conf @@ -293,6 +293,7 @@ location ^~ /civicrm { if ($is_bot) { return 403; } + access_log off; set $nocache_details "Skip"; try_files $uri @drupal; } diff --git a/http/Provision/Service/http/nginx_octopus_include.conf b/http/Provision/Service/http/nginx_octopus_include.conf index ae63bad397879d43b65ca9e356869dd42d915205..f28a5966c0939d26b2dbd56eefeaecda1b3599bc 100644 --- a/http/Provision/Service/http/nginx_octopus_include.conf +++ b/http/Provision/Service/http/nginx_octopus_include.conf @@ -279,6 +279,7 @@ location ^~ /civicrm { if ($is_bot) { return 403; } + access_log off; set $nocache_details "Skip"; try_files $uri @drupal; }