Update to drupal-org-drupal 8.0.0-rc2. For more information, see https://www.drupal.org/node/2598668
This commit is contained in:
parent
f32e58e4b1
commit
8e18df8c36
3062 changed files with 15044 additions and 172506 deletions
|
@ -115,6 +115,17 @@ parameters:
|
|||
#
|
||||
# @default []
|
||||
tags: []
|
||||
# Cacheability debugging:
|
||||
#
|
||||
# Responses with cacheability metadata (CacheableResponseInterface instances)
|
||||
# get X-Drupal-Cache-Tags and X-Drupal-Cache-Contexts headers.
|
||||
#
|
||||
# For more information about debugging cacheable responses, see
|
||||
# https://www.drupal.org/developing/api/8/response/cacheable-response-interface
|
||||
#
|
||||
# Not recommended in production environments
|
||||
# @default false
|
||||
http.response.debug_cacheability_headers: false
|
||||
factory.keyvalue:
|
||||
{}
|
||||
# Default key/value storage service to use.
|
||||
|
|
|
@ -369,7 +369,31 @@ $settings['update_free_access'] = FALSE;
|
|||
* Set this value if your proxy server sends the client IP in a header
|
||||
* other than X-Forwarded-For.
|
||||
*/
|
||||
# $settings['reverse_proxy_header'] = 'HTTP_X_CLUSTER_CLIENT_IP';
|
||||
# $settings['reverse_proxy_header'] = 'X_CLUSTER_CLIENT_IP';
|
||||
|
||||
/**
|
||||
* Set this value if your proxy server sends the client protocol in a header
|
||||
* other than X-Forwarded-Proto.
|
||||
*/
|
||||
# $settings['reverse_proxy_proto_header'] = 'X_FORWARDED_PROTO';
|
||||
|
||||
/**
|
||||
* Set this value if your proxy server sends the client protocol in a header
|
||||
* other than X-Forwarded-Host.
|
||||
*/
|
||||
# $settings['reverse_proxy_host_header'] = 'X_FORWARDED_HOST';
|
||||
|
||||
/**
|
||||
* Set this value if your proxy server sends the client protocol in a header
|
||||
* other than X-Forwarded-Port.
|
||||
*/
|
||||
# $settings['reverse_proxy_port_header'] = 'X_FORWARDED_PORT';
|
||||
|
||||
/**
|
||||
* Set this value if your proxy server sends the client protocol in a header
|
||||
* other than Forwarded.
|
||||
*/
|
||||
# $settings['reverse_proxy_forwarded_header'] = 'FORWARDED';
|
||||
|
||||
/**
|
||||
* Page caching:
|
||||
|
@ -446,7 +470,7 @@ if ($settings['hash_salt']) {
|
|||
# $settings['allow_authorize_operations'] = FALSE;
|
||||
|
||||
/**
|
||||
* Default mode for for directories and files written by Drupal.
|
||||
* Default mode for directories and files written by Drupal.
|
||||
*
|
||||
* Value should be in PHP Octal Notation, with leading zero.
|
||||
*/
|
||||
|
|
Reference in a new issue