Skip to content
Snippets Groups Projects
Commit f0a3476e authored by Grazyna Jaworska's avatar Grazyna Jaworska
Browse files

Nginx: Fix for D8-specific /cron/ location caching (extended mode only).

parent f762b539
Branches
Tags
No related merge requests found
...@@ -234,6 +234,9 @@ location ^~ /cron/ { ...@@ -234,6 +234,9 @@ location ^~ /cron/ {
<?php if ($satellite_mode == 'boa'): ?> <?php if ($satellite_mode == 'boa'): ?>
allow 127.0.0.1; allow 127.0.0.1;
deny all; deny all;
<?php endif; ?>
<?php if ($nginx_config_mode == 'extended'): ?>
set $nocache_details "Skip";
<?php endif; ?> <?php endif; ?>
try_files $uri @drupal; try_files $uri @drupal;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment