diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 91ca349..492b9d4 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -1391,7 +1391,7 @@ function drupal_serve_page_from_cache(stdClass $cache) { // response to reply to a subsequent request for a given URL without // revalidation. If a Vary header has been set in hook_boot(), it is assumed // that the module knows how to cache the page. - if (!isset($hook_boot_headers['vary']) && !variable_get('omit_vary_cookie')) { + if (!isset($hook_boot_headers['vary']) && !config('system.performance')->get('cache.page.omit_vary_cookie')) { header('Vary: Cookie'); } diff --git a/core/modules/system/config/system.performance.yml b/core/modules/system/config/system.performance.yml index d508591..61adb18 100644 --- a/core/modules/system/config/system.performance.yml +++ b/core/modules/system/config/system.performance.yml @@ -1,6 +1,7 @@ cache: page: enabled: '0' + omit_vary_cookie: '' max_age: '0' css: preprocess: '0' diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 33df8c2..41f050a 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -1961,6 +1961,7 @@ function system_update_8017() { 'page_compression' => 'response.gzip', 'preprocess_css' => 'css.preprocess', 'preprocess_js' => 'js.preprocess', + 'omit_vary_cookie' => 'omit_vary_cookie', 'stale_file_threshold' => 'stale_file_threshold', )); } diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 8d123d2..5022c24 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -444,7 +444,7 @@ * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid * getting cached pages from the proxy. */ -# $conf['omit_vary_cookie'] = TRUE; +# $conf['system.performance']['cache']['page']['omit_vary_cookie'] = TRUE; /** * CSS/JS aggregated file gzip compression: