full update (with some difficulties from pathauto
This commit is contained in:
@ -229,29 +229,15 @@ $databases = [];
|
||||
/**
|
||||
* Location of the site configuration files.
|
||||
*
|
||||
* The $config_directories array specifies the location of file system
|
||||
* directories used for configuration data. On install, the "sync" directory is
|
||||
* created. This is used for configuration imports. The "active" directory is
|
||||
* not created by default since the default storage for active configuration is
|
||||
* the database rather than the file system. (This can be changed. See "Active
|
||||
* configuration settings" below).
|
||||
* The $settings['config_sync_directory'] specifies the location of file system
|
||||
* directory used for syncing configuration data. On install, the directory is
|
||||
* created. This is used for configuration imports.
|
||||
*
|
||||
* The default location for the "sync" directory is inside a randomly-named
|
||||
* directory in the public files path. The setting below allows you to override
|
||||
* the "sync" location.
|
||||
*
|
||||
* If you use files for the "active" configuration, you can tell the
|
||||
* Configuration system where this directory is located by adding an entry with
|
||||
* array key CONFIG_ACTIVE_DIRECTORY.
|
||||
*
|
||||
* Example:
|
||||
* @code
|
||||
* $config_directories = [
|
||||
* CONFIG_SYNC_DIRECTORY => '/directory/outside/webroot',
|
||||
* ];
|
||||
* @endcode
|
||||
* The default location for this directory is inside a randomly-named
|
||||
* directory in the public files path. The setting below allows you to set
|
||||
* its location.
|
||||
*/
|
||||
$config_directories = [];
|
||||
# $settings['config_sync_directory'] = '/directory/outside/webroot';
|
||||
|
||||
/**
|
||||
* Settings:
|
||||
@ -536,6 +522,19 @@ if ($settings['hash_salt']) {
|
||||
*/
|
||||
# $settings['file_private_path'] = '';
|
||||
|
||||
/**
|
||||
* Temporary file path:
|
||||
*
|
||||
* A local file system path where temporary files will be stored. This directory
|
||||
* must be absolute, outside of the Drupal installation directory and not
|
||||
* accessible over the web.
|
||||
*
|
||||
* If this is not set, the default for the operating system will be used.
|
||||
*
|
||||
* @see \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory()
|
||||
*/
|
||||
# $settings['file_temp_path'] = '/tmp';
|
||||
|
||||
/**
|
||||
* Session write interval:
|
||||
*
|
||||
@ -596,25 +595,6 @@ if ($settings['hash_salt']) {
|
||||
# ini_set('pcre.backtrack_limit', 200000);
|
||||
# ini_set('pcre.recursion_limit', 200000);
|
||||
|
||||
/**
|
||||
* Active configuration settings.
|
||||
*
|
||||
* By default, the active configuration is stored in the database in the
|
||||
* {config} table. To use a different storage mechanism for the active
|
||||
* configuration, do the following prior to installing:
|
||||
* - Create an "active" directory and declare its path in $config_directories
|
||||
* as explained under the 'Location of the site configuration files' section
|
||||
* above in this file. To enhance security, you can declare a path that is
|
||||
* outside your document root.
|
||||
* - Override the 'bootstrap_config_storage' setting here. It must be set to a
|
||||
* callable that returns an object that implements
|
||||
* \Drupal\Core\Config\StorageInterface.
|
||||
* - Override the service definition 'config.storage.active'. Put this
|
||||
* override in a services.yml file in the same directory as settings.php
|
||||
* (definitions in this file will override service definition defaults).
|
||||
*/
|
||||
# $settings['bootstrap_config_storage'] = ['Drupal\Core\Config\BootstrapConfigStorageFactory', 'getFileStorage'];
|
||||
|
||||
/**
|
||||
* Configuration overrides.
|
||||
*
|
||||
@ -637,9 +617,7 @@ if ($settings['hash_salt']) {
|
||||
* configuration values in settings.php will not fire any of the configuration
|
||||
* change events.
|
||||
*/
|
||||
# $config['system.file']['path']['temporary'] = '/tmp';
|
||||
# $config['system.site']['name'] = 'My Drupal site';
|
||||
# $config['system.theme']['default'] = 'stark';
|
||||
# $config['user.settings']['anonymous'] = 'Visitor';
|
||||
|
||||
/**
|
||||
@ -736,7 +714,7 @@ $settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml';
|
||||
* with common frontend tools and recursive scanning of directories looking for
|
||||
* extensions.
|
||||
*
|
||||
* @see file_scan_directory()
|
||||
* @see \Drupal\Core\File\FileSystemInterface::scanDirectory()
|
||||
* @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory()
|
||||
*/
|
||||
$settings['file_scan_ignore_directories'] = [
|
||||
|
Reference in New Issue
Block a user