diff options
-rw-r--r-- | http/Provision/Service/http/nginx_legacy_include.conf | 1 | ||||
-rw-r--r-- | http/Provision/Service/http/nginx_modern_include.conf | 1 | ||||
-rw-r--r-- | http/Provision/Service/http/nginx_octopus_include.conf | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/http/Provision/Service/http/nginx_legacy_include.conf b/http/Provision/Service/http/nginx_legacy_include.conf index 304a0ea..36e209c 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 f1b881f..f943787 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 ae63bad..f28a596 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; } |