Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

779 lines
31 KiB

4 years ago
  1. <?php
  2. // @codingStandardsIgnoreFile
  3. /**
  4. * @file
  5. * Drupal site-specific configuration file.
  6. *
  7. * IMPORTANT NOTE:
  8. * This file may have been set to read-only by the Drupal installation program.
  9. * If you make changes to this file, be sure to protect it again after making
  10. * your modifications. Failure to remove write permissions to this file is a
  11. * security risk.
  12. *
  13. * In order to use the selection rules below the multisite aliasing file named
  14. * sites/sites.php must be present. Its optional settings will be loaded, and
  15. * the aliases in the array $sites will override the default directory rules
  16. * below. See sites/example.sites.php for more information about aliases.
  17. *
  18. * The configuration directory will be discovered by stripping the website's
  19. * hostname from left to right and pathname from right to left. The first
  20. * configuration file found will be used and any others will be ignored. If no
  21. * other configuration file is found then the default configuration file at
  22. * 'sites/default' will be used.
  23. *
  24. * For example, for a fictitious site installed at
  25. * https://www.drupal.org:8080/mysite/test/, the 'settings.php' file is searched
  26. * for in the following directories:
  27. *
  28. * - sites/8080.www.drupal.org.mysite.test
  29. * - sites/www.drupal.org.mysite.test
  30. * - sites/drupal.org.mysite.test
  31. * - sites/org.mysite.test
  32. *
  33. * - sites/8080.www.drupal.org.mysite
  34. * - sites/www.drupal.org.mysite
  35. * - sites/drupal.org.mysite
  36. * - sites/org.mysite
  37. *
  38. * - sites/8080.www.drupal.org
  39. * - sites/www.drupal.org
  40. * - sites/drupal.org
  41. * - sites/org
  42. *
  43. * - sites/default
  44. *
  45. * Note that if you are installing on a non-standard port number, prefix the
  46. * hostname with that number. For example,
  47. * https://www.drupal.org:8080/mysite/test/ could be loaded from
  48. * sites/8080.www.drupal.org.mysite.test/.
  49. *
  50. * @see example.sites.php
  51. * @see \Drupal\Core\DrupalKernel::getSitePath()
  52. *
  53. * In addition to customizing application settings through variables in
  54. * settings.php, you can create a services.yml file in the same directory to
  55. * register custom, site-specific service definitions and/or swap out default
  56. * implementations with custom ones.
  57. */
  58. /**
  59. * Database settings:
  60. *
  61. * The $databases array specifies the database connection or
  62. * connections that Drupal may use. Drupal is able to connect
  63. * to multiple databases, including multiple types of databases,
  64. * during the same request.
  65. *
  66. * One example of the simplest connection array is shown below. To use the
  67. * sample settings, copy and uncomment the code below between the @code and
  68. * @endcode lines and paste it after the $databases declaration. You will need
  69. * to replace the database username and password and possibly the host and port
  70. * with the appropriate credentials for your database system.
  71. *
  72. * The next section describes how to customize the $databases array for more
  73. * specific needs.
  74. *
  75. * @code
  76. * $databases['default']['default'] = [
  77. * 'database' => 'databasename',
  78. * 'username' => 'sqlusername',
  79. * 'password' => 'sqlpassword',
  80. * 'host' => 'localhost',
  81. * 'port' => '3306',
  82. * 'driver' => 'mysql',
  83. * 'prefix' => '',
  84. * 'collation' => 'utf8mb4_general_ci',
  85. * ];
  86. * @endcode
  87. */
  88. $databases = [];
  89. /**
  90. * Customizing database settings.
  91. *
  92. * Many of the values of the $databases array can be customized for your
  93. * particular database system. Refer to the sample in the section above as a
  94. * starting point.
  95. *
  96. * The "driver" property indicates what Drupal database driver the
  97. * connection should use. This is usually the same as the name of the
  98. * database type, such as mysql or sqlite, but not always. The other
  99. * properties will vary depending on the driver. For SQLite, you must
  100. * specify a database file name in a directory that is writable by the
  101. * webserver. For most other drivers, you must specify a
  102. * username, password, host, and database name.
  103. *
  104. * Transaction support is enabled by default for all drivers that support it,
  105. * including MySQL. To explicitly disable it, set the 'transactions' key to
  106. * FALSE.
  107. * Note that some configurations of MySQL, such as the MyISAM engine, don't
  108. * support it and will proceed silently even if enabled. If you experience
  109. * transaction related crashes with such configuration, set the 'transactions'
  110. * key to FALSE.
  111. *
  112. * For each database, you may optionally specify multiple "target" databases.
  113. * A target database allows Drupal to try to send certain queries to a
  114. * different database if it can but fall back to the default connection if not.
  115. * That is useful for primary/replica replication, as Drupal may try to connect
  116. * to a replica server when appropriate and if one is not available will simply
  117. * fall back to the single primary server (The terms primary/replica are
  118. * traditionally referred to as master/slave in database server documentation).
  119. *
  120. * The general format for the $databases array is as follows:
  121. * @code
  122. * $databases['default']['default'] = $info_array;
  123. * $databases['default']['replica'][] = $info_array;
  124. * $databases['default']['replica'][] = $info_array;
  125. * $databases['extra']['default'] = $info_array;
  126. * @endcode
  127. *
  128. * In the above example, $info_array is an array of settings described above.
  129. * The first line sets a "default" database that has one primary database
  130. * (the second level default). The second and third lines create an array
  131. * of potential replica databases. Drupal will select one at random for a given
  132. * request as needed. The fourth line creates a new database with a name of
  133. * "extra".
  134. *
  135. * You can optionally set prefixes for some or all database table names
  136. * by using the 'prefix' setting. If a prefix is specified, the table
  137. * name will be prepended with its value. Be sure to use valid database
  138. * characters only, usually alphanumeric and underscore. If no prefixes
  139. * are desired, leave it as an empty string ''.
  140. *
  141. * To have all database names prefixed, set 'prefix' as a string:
  142. * @code
  143. * 'prefix' => 'main_',
  144. * @endcode
  145. *
  146. * Per-table prefixes are deprecated as of Drupal 8.2, and will be removed in
  147. * Drupal 9.0. After that, only a single prefix for all tables will be
  148. * supported.
  149. *
  150. * To provide prefixes for specific tables, set 'prefix' as an array.
  151. * The array's keys are the table names and the values are the prefixes.
  152. * The 'default' element is mandatory and holds the prefix for any tables
  153. * not specified elsewhere in the array. Example:
  154. * @code
  155. * 'prefix' => [
  156. * 'default' => 'main_',
  157. * 'users' => 'shared_',
  158. * 'sessions' => 'shared_',
  159. * 'role' => 'shared_',
  160. * 'authmap' => 'shared_',
  161. * ],
  162. * @endcode
  163. * You can also use a reference to a schema/database as a prefix. This may be
  164. * useful if your Drupal installation exists in a schema that is not the default
  165. * or you want to access several databases from the same code base at the same
  166. * time.
  167. * Example:
  168. * @code
  169. * 'prefix' => [
  170. * 'default' => 'main.',
  171. * 'users' => 'shared.',
  172. * 'sessions' => 'shared.',
  173. * 'role' => 'shared.',
  174. * 'authmap' => 'shared.',
  175. * ];
  176. * @endcode
  177. * NOTE: MySQL and SQLite's definition of a schema is a database.
  178. *
  179. * Advanced users can add or override initial commands to execute when
  180. * connecting to the database server, as well as PDO connection settings. For
  181. * example, to enable MySQL SELECT queries to exceed the max_join_size system
  182. * variable, and to reduce the database connection timeout to 5 seconds:
  183. * @code
  184. * $databases['default']['default'] = [
  185. * 'init_commands' => [
  186. * 'big_selects' => 'SET SQL_BIG_SELECTS=1',
  187. * ],
  188. * 'pdo' => [
  189. * PDO::ATTR_TIMEOUT => 5,
  190. * ],
  191. * ];
  192. * @endcode
  193. *
  194. * WARNING: The above defaults are designed for database portability. Changing
  195. * them may cause unexpected behavior, including potential data loss. See
  196. * https://www.drupal.org/developing/api/database/configuration for more
  197. * information on these defaults and the potential issues.
  198. *
  199. * More details can be found in the constructor methods for each driver:
  200. * - \Drupal\Core\Database\Driver\mysql\Connection::__construct()
  201. * - \Drupal\Core\Database\Driver\pgsql\Connection::__construct()
  202. * - \Drupal\Core\Database\Driver\sqlite\Connection::__construct()
  203. *
  204. * Sample Database configuration format for PostgreSQL (pgsql):
  205. * @code
  206. * $databases['default']['default'] = [
  207. * 'driver' => 'pgsql',
  208. * 'database' => 'databasename',
  209. * 'username' => 'sqlusername',
  210. * 'password' => 'sqlpassword',
  211. * 'host' => 'localhost',
  212. * 'prefix' => '',
  213. * ];
  214. * @endcode
  215. *
  216. * Sample Database configuration format for SQLite (sqlite):
  217. * @code
  218. * $databases['default']['default'] = [
  219. * 'driver' => 'sqlite',
  220. * 'database' => '/path/to/databasefilename',
  221. * ];
  222. * @endcode
  223. */
  224. /**
  225. * Location of the site configuration files.
  226. *
  227. * The $config_directories array specifies the location of file system
  228. * directories used for configuration data. On install, the "sync" directory is
  229. * created. This is used for configuration imports. The "active" directory is
  230. * not created by default since the default storage for active configuration is
  231. * the database rather than the file system. (This can be changed. See "Active
  232. * configuration settings" below).
  233. *
  234. * The default location for the "sync" directory is inside a randomly-named
  235. * directory in the public files path. The setting below allows you to override
  236. * the "sync" location.
  237. *
  238. * If you use files for the "active" configuration, you can tell the
  239. * Configuration system where this directory is located by adding an entry with
  240. * array key CONFIG_ACTIVE_DIRECTORY.
  241. *
  242. * Example:
  243. * @code
  244. * $config_directories = [
  245. * CONFIG_SYNC_DIRECTORY => '/directory/outside/webroot',
  246. * ];
  247. * @endcode
  248. */
  249. $config_directories = [];
  250. /**
  251. * Settings:
  252. *
  253. * $settings contains environment-specific configuration, such as the files
  254. * directory and reverse proxy address, and temporary configuration, such as
  255. * security overrides.
  256. *
  257. * @see \Drupal\Core\Site\Settings::get()
  258. */
  259. /**
  260. * Salt for one-time login links, cancel links, form tokens, etc.
  261. *
  262. * This variable will be set to a random value by the installer. All one-time
  263. * login links will be invalidated if the value is changed. Note that if your
  264. * site is deployed on a cluster of web servers, you must ensure that this
  265. * variable has the same value on each server.
  266. *
  267. * For enhanced security, you may set this variable to the contents of a file
  268. * outside your document root; you should also ensure that this file is not
  269. * stored with backups of your database.
  270. *
  271. * Example:
  272. * @code
  273. * $settings['hash_salt'] = file_get_contents('/home/example/salt.txt');
  274. * @endcode
  275. */
  276. $settings['hash_salt'] = '';
  277. /**
  278. * Deployment identifier.
  279. *
  280. * Drupal's dependency injection container will be automatically invalidated and
  281. * rebuilt when the Drupal core version changes. When updating contributed or
  282. * custom code that changes the container, changing this identifier will also
  283. * allow the container to be invalidated as soon as code is deployed.
  284. */
  285. # $settings['deployment_identifier'] = \Drupal::VERSION;
  286. /**
  287. * Access control for update.php script.
  288. *
  289. * If you are updating your Drupal installation using the update.php script but
  290. * are not logged in using either an account with the "Administer software
  291. * updates" permission or the site maintenance account (the account that was
  292. * created during installation), you will need to modify the access check
  293. * statement below. Change the FALSE to a TRUE to disable the access check.
  294. * After finishing the upgrade, be sure to open this file again and change the
  295. * TRUE back to a FALSE!
  296. */
  297. $settings['update_free_access'] = FALSE;
  298. /**
  299. * External access proxy settings:
  300. *
  301. * If your site must access the Internet via a web proxy then you can enter the
  302. * proxy settings here. Set the full URL of the proxy, including the port, in
  303. * variables:
  304. * - $settings['http_client_config']['proxy']['http']: The proxy URL for HTTP
  305. * requests.
  306. * - $settings['http_client_config']['proxy']['https']: The proxy URL for HTTPS
  307. * requests.
  308. * You can pass in the user name and password for basic authentication in the
  309. * URLs in these settings.
  310. *
  311. * You can also define an array of host names that can be accessed directly,
  312. * bypassing the proxy, in $settings['http_client_config']['proxy']['no'].
  313. */
  314. # $settings['http_client_config']['proxy']['http'] = 'http://proxy_user:proxy_pass@example.com:8080';
  315. # $settings['http_client_config']['proxy']['https'] = 'http://proxy_user:proxy_pass@example.com:8080';
  316. # $settings['http_client_config']['proxy']['no'] = ['127.0.0.1', 'localhost'];
  317. /**
  318. * Reverse Proxy Configuration:
  319. *
  320. * Reverse proxy servers are often used to enhance the performance
  321. * of heavily visited sites and may also provide other site caching,
  322. * security, or encryption benefits. In an environment where Drupal
  323. * is behind a reverse proxy, the real IP address of the client should
  324. * be determined such that the correct client IP address is available
  325. * to Drupal's logging, statistics, and access management systems. In
  326. * the most simple scenario, the proxy server will add an
  327. * X-Forwarded-For header to the request that contains the client IP
  328. * address. However, HTTP headers are vulnerable to spoofing, where a
  329. * malicious client could bypass restrictions by setting the
  330. * X-Forwarded-For header directly. Therefore, Drupal's proxy
  331. * configuration requires the IP addresses of all remote proxies to be
  332. * specified in $settings['reverse_proxy_addresses'] to work correctly.
  333. *
  334. * Enable this setting to get Drupal to determine the client IP from the
  335. * X-Forwarded-For header. If you are unsure about this setting, do not have a
  336. * reverse proxy, or Drupal operates in a shared hosting environment, this
  337. * setting should remain commented out.
  338. *
  339. * In order for this setting to be used you must specify every possible
  340. * reverse proxy IP address in $settings['reverse_proxy_addresses'].
  341. * If a complete list of reverse proxies is not available in your
  342. * environment (for example, if you use a CDN) you may set the
  343. * $_SERVER['REMOTE_ADDR'] variable directly in settings.php.
  344. * Be aware, however, that it is likely that this would allow IP
  345. * address spoofing unless more advanced precautions are taken.
  346. */
  347. # $settings['reverse_proxy'] = TRUE;
  348. /**
  349. * Specify every reverse proxy IP address in your environment.
  350. * This setting is required if $settings['reverse_proxy'] is TRUE.
  351. */
  352. # $settings['reverse_proxy_addresses'] = ['a.b.c.d', ...];
  353. /**
  354. * Reverse proxy trusted headers.
  355. *
  356. * Sets which headers to trust from your reverse proxy.
  357. *
  358. * Common values are:
  359. * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL
  360. * - \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED
  361. *
  362. * Note the default value of
  363. * @code
  364. * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED
  365. * @endcode
  366. * is not secure by default. The value should be set to only the specific
  367. * headers the reverse proxy uses. For example:
  368. * @code
  369. * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL
  370. * @endcode
  371. * This would trust the following headers:
  372. * - X_FORWARDED_FOR
  373. * - X_FORWARDED_HOST
  374. * - X_FORWARDED_PROTO
  375. * - X_FORWARDED_PORT
  376. *
  377. * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL
  378. * @see \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED
  379. * @see \Symfony\Component\HttpFoundation\Request::setTrustedProxies
  380. */
  381. # $settings['reverse_proxy_trusted_headers'] = \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED;
  382. /**
  383. * Page caching:
  384. *
  385. * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page
  386. * views. This tells a HTTP proxy that it may return a page from its local
  387. * cache without contacting the web server, if the user sends the same Cookie
  388. * header as the user who originally requested the cached page. Without "Vary:
  389. * Cookie", authenticated users would also be served the anonymous page from
  390. * the cache. If the site has mostly anonymous users except a few known
  391. * editors/administrators, the Vary header can be omitted. This allows for
  392. * better caching in HTTP proxies (including reverse proxies), i.e. even if
  393. * clients send different cookies, they still get content served from the cache.
  394. * However, authenticated users should access the site directly (i.e. not use an
  395. * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid
  396. * getting cached pages from the proxy.
  397. */
  398. # $settings['omit_vary_cookie'] = TRUE;
  399. /**
  400. * Cache TTL for client error (4xx) responses.
  401. *
  402. * Items cached per-URL tend to result in a large number of cache items, and
  403. * this can be problematic on 404 pages which by their nature are unbounded. A
  404. * fixed TTL can be set for these items, defaulting to one hour, so that cache
  405. * backends which do not support LRU can purge older entries. To disable caching
  406. * of client error responses set the value to 0. Currently applies only to
  407. * page_cache module.
  408. */
  409. # $settings['cache_ttl_4xx'] = 3600;
  410. /**
  411. * Expiration of cached forms.
  412. *
  413. * Drupal's Form API stores details of forms in a cache and these entries are
  414. * kept for at least 6 hours by default. Expired entries are cleared by cron.
  415. *
  416. * @see \Drupal\Core\Form\FormCache::setCache()
  417. */
  418. # $settings['form_cache_expiration'] = 21600;
  419. /**
  420. * Class Loader.
  421. *
  422. * If the APC extension is detected, the Symfony APC class loader is used for
  423. * performance reasons. Detection can be prevented by setting
  424. * class_loader_auto_detect to false, as in the example below.
  425. */
  426. # $settings['class_loader_auto_detect'] = FALSE;
  427. /*
  428. * If the APC extension is not detected, either because APC is missing or
  429. * because auto-detection has been disabled, auto-loading falls back to
  430. * Composer's ClassLoader, which is good for development as it does not break
  431. * when code is moved in the file system. You can also decorate the base class
  432. * loader with another cached solution than the Symfony APC class loader, as
  433. * all production sites should have a cached class loader of some sort enabled.
  434. *
  435. * To do so, you may decorate and replace the local $class_loader variable. For
  436. * example, to use Symfony's APC class loader without automatic detection,
  437. * uncomment the code below.
  438. */
  439. /*
  440. if ($settings['hash_salt']) {
  441. $prefix = 'drupal.' . hash('sha256', 'drupal.' . $settings['hash_salt']);
  442. $apc_loader = new \Symfony\Component\ClassLoader\ApcClassLoader($prefix, $class_loader);
  443. unset($prefix);
  444. $class_loader->unregister();
  445. $apc_loader->register();
  446. $class_loader = $apc_loader;
  447. }
  448. */
  449. /**
  450. * Authorized file system operations:
  451. *
  452. * The Update Manager module included with Drupal provides a mechanism for
  453. * site administrators to securely install missing updates for the site
  454. * directly through the web user interface. On securely-configured servers,
  455. * the Update manager will require the administrator to provide SSH or FTP
  456. * credentials before allowing the installation to proceed; this allows the
  457. * site to update the new files as the user who owns all the Drupal files,
  458. * instead of as the user the webserver is running as. On servers where the
  459. * webserver user is itself the owner of the Drupal files, the administrator
  460. * will not be prompted for SSH or FTP credentials (note that these server
  461. * setups are common on shared hosting, but are inherently insecure).
  462. *
  463. * Some sites might wish to disable the above functionality, and only update
  464. * the code directly via SSH or FTP themselves. This setting completely
  465. * disables all functionality related to these authorized file operations.
  466. *
  467. * @see https://www.drupal.org/node/244924
  468. *
  469. * Remove the leading hash signs to disable.
  470. */
  471. # $settings['allow_authorize_operations'] = FALSE;
  472. /**
  473. * Default mode for directories and files written by Drupal.
  474. *
  475. * Value should be in PHP Octal Notation, with leading zero.
  476. */
  477. # $settings['file_chmod_directory'] = 0775;
  478. # $settings['file_chmod_file'] = 0664;
  479. /**
  480. * Public file base URL:
  481. *
  482. * An alternative base URL to be used for serving public files. This must
  483. * include any leading directory path.
  484. *
  485. * A different value from the domain used by Drupal to be used for accessing
  486. * public files. This can be used for a simple CDN integration, or to improve
  487. * security by serving user-uploaded files from a different domain or subdomain
  488. * pointing to the same server. Do not include a trailing slash.
  489. */
  490. # $settings['file_public_base_url'] = 'http://downloads.example.com/files';
  491. /**
  492. * Public file path:
  493. *
  494. * A local file system path where public files will be stored. This directory
  495. * must exist and be writable by Drupal. This directory must be relative to
  496. * the Drupal installation directory and be accessible over the web.
  497. */
  498. # $settings['file_public_path'] = 'sites/default/files';
  499. /**
  500. * Private file path:
  501. *
  502. * A local file system path where private files will be stored. This directory
  503. * must be absolute, outside of the Drupal installation directory and not
  504. * accessible over the web.
  505. *
  506. * Note: Caches need to be cleared when this value is changed to make the
  507. * private:// stream wrapper available to the system.
  508. *
  509. * See https://www.drupal.org/documentation/modules/file for more information
  510. * about securing private files.
  511. */
  512. # $settings['file_private_path'] = '';
  513. /**
  514. * Session write interval:
  515. *
  516. * Set the minimum interval between each session write to database.
  517. * For performance reasons it defaults to 180.
  518. */
  519. # $settings['session_write_interval'] = 180;
  520. /**
  521. * String overrides:
  522. *
  523. * To override specific strings on your site with or without enabling the Locale
  524. * module, add an entry to this list. This functionality allows you to change
  525. * a small number of your site's default English language interface strings.
  526. *
  527. * Remove the leading hash signs to enable.
  528. *
  529. * The "en" part of the variable name, is dynamic and can be any langcode of
  530. * any added language. (eg locale_custom_strings_de for german).
  531. */
  532. # $settings['locale_custom_strings_en'][''] = [
  533. # 'forum' => 'Discussion board',
  534. # '@count min' => '@count minutes',
  535. # ];
  536. /**
  537. * A custom theme for the offline page:
  538. *
  539. * This applies when the site is explicitly set to maintenance mode through the
  540. * administration page or when the database is inactive due to an error.
  541. * The template file should also be copied into the theme. It is located inside
  542. * 'core/modules/system/templates/maintenance-page.html.twig'.
  543. *
  544. * Note: This setting does not apply to installation and update pages.
  545. */
  546. # $settings['maintenance_theme'] = 'bartik';
  547. /**
  548. * PHP settings:
  549. *
  550. * To see what PHP settings are possible, including whether they can be set at
  551. * runtime (by using ini_set()), read the PHP documentation:
  552. * http://php.net/manual/ini.list.php
  553. * See \Drupal\Core\DrupalKernel::bootEnvironment() for required runtime
  554. * settings and the .htaccess file for non-runtime settings.
  555. * Settings defined there should not be duplicated here so as to avoid conflict
  556. * issues.
  557. */
  558. /**
  559. * If you encounter a situation where users post a large amount of text, and
  560. * the result is stripped out upon viewing but can still be edited, Drupal's
  561. * output filter may not have sufficient memory to process it. If you
  562. * experience this issue, you may wish to uncomment the following two lines
  563. * and increase the limits of these variables. For more information, see
  564. * http://php.net/manual/pcre.configuration.php.
  565. */
  566. # ini_set('pcre.backtrack_limit', 200000);
  567. # ini_set('pcre.recursion_limit', 200000);
  568. /**
  569. * Active configuration settings.
  570. *
  571. * By default, the active configuration is stored in the database in the
  572. * {config} table. To use a different storage mechanism for the active
  573. * configuration, do the following prior to installing:
  574. * - Create an "active" directory and declare its path in $config_directories
  575. * as explained under the 'Location of the site configuration files' section
  576. * above in this file. To enhance security, you can declare a path that is
  577. * outside your document root.
  578. * - Override the 'bootstrap_config_storage' setting here. It must be set to a
  579. * callable that returns an object that implements
  580. * \Drupal\Core\Config\StorageInterface.
  581. * - Override the service definition 'config.storage.active'. Put this
  582. * override in a services.yml file in the same directory as settings.php
  583. * (definitions in this file will override service definition defaults).
  584. */
  585. # $settings['bootstrap_config_storage'] = ['Drupal\Core\Config\BootstrapConfigStorageFactory', 'getFileStorage'];
  586. /**
  587. * Configuration overrides.
  588. *
  589. * To globally override specific configuration values for this site,
  590. * set them here. You usually don't need to use this feature. This is
  591. * useful in a configuration file for a vhost or directory, rather than
  592. * the default settings.php.
  593. *
  594. * Note that any values you provide in these variable overrides will not be
  595. * viewable from the Drupal administration interface. The administration
  596. * interface displays the values stored in configuration so that you can stage
  597. * changes to other environments that don't have the overrides.
  598. *
  599. * There are particular configuration values that are risky to override. For
  600. * example, overriding the list of installed modules in 'core.extension' is not
  601. * supported as module install or uninstall has not occurred. Other examples
  602. * include field storage configuration, because it has effects on database
  603. * structure, and 'core.menu.static_menu_link_overrides' since this is cached in
  604. * a way that is not config override aware. Also, note that changing
  605. * configuration values in settings.php will not fire any of the configuration
  606. * change events.
  607. */
  608. # $config['system.file']['path']['temporary'] = '/tmp';
  609. # $config['system.site']['name'] = 'My Drupal site';
  610. # $config['system.theme']['default'] = 'stark';
  611. # $config['user.settings']['anonymous'] = 'Visitor';
  612. /**
  613. * Fast 404 pages:
  614. *
  615. * Drupal can generate fully themed 404 pages. However, some of these responses
  616. * are for images or other resource files that are not displayed to the user.
  617. * This can waste bandwidth, and also generate server load.
  618. *
  619. * The options below return a simple, fast 404 page for URLs matching a
  620. * specific pattern:
  621. * - $config['system.performance']['fast_404']['exclude_paths']: A regular
  622. * expression to match paths to exclude, such as images generated by image
  623. * styles, or dynamically-resized images. The default pattern provided below
  624. * also excludes the private file system. If you need to add more paths, you
  625. * can add '|path' to the expression.
  626. * - $config['system.performance']['fast_404']['paths']: A regular expression to
  627. * match paths that should return a simple 404 page, rather than the fully
  628. * themed 404 page. If you don't have any aliases ending in htm or html you
  629. * can add '|s?html?' to the expression.
  630. * - $config['system.performance']['fast_404']['html']: The html to return for
  631. * simple 404 pages.
  632. *
  633. * Remove the leading hash signs if you would like to alter this functionality.
  634. */
  635. # $config['system.performance']['fast_404']['exclude_paths'] = '/\/(?:styles)|(?:system\/files)\//';
  636. # $config['system.performance']['fast_404']['paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
  637. # $config['system.performance']['fast_404']['html'] = '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>';
  638. /**
  639. * Load services definition file.
  640. */
  641. $settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml';
  642. /**
  643. * Override the default service container class.
  644. *
  645. * This is useful for example to trace the service container for performance
  646. * tracking purposes, for testing a service container with an error condition or
  647. * to test a service container that throws an exception.
  648. */
  649. # $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container';
  650. /**
  651. * Override the default yaml parser class.
  652. *
  653. * Provide a fully qualified class name here if you would like to provide an
  654. * alternate implementation YAML parser. The class must implement the
  655. * \Drupal\Component\Serialization\SerializationInterface interface.
  656. */
  657. # $settings['yaml_parser_class'] = NULL;
  658. /**
  659. * Trusted host configuration.
  660. *
  661. * Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host
  662. * header spoofing.
  663. *
  664. * To enable the trusted host mechanism, you enable your allowable hosts
  665. * in $settings['trusted_host_patterns']. This should be an array of regular
  666. * expression patterns, without delimiters, representing the hosts you would
  667. * like to allow.
  668. *
  669. * For example:
  670. * @code
  671. * $settings['trusted_host_patterns'] = [
  672. * '^www\.example\.com$',
  673. * ];
  674. * @endcode
  675. * will allow the site to only run from www.example.com.
  676. *
  677. * If you are running multisite, or if you are running your site from
  678. * different domain names (eg, you don't redirect http://www.example.com to
  679. * http://example.com), you should specify all of the host patterns that are
  680. * allowed by your site.
  681. *
  682. * For example:
  683. * @code
  684. * $settings['trusted_host_patterns'] = [
  685. * '^example\.com$',
  686. * '^.+\.example\.com$',
  687. * '^example\.org$',
  688. * '^.+\.example\.org$',
  689. * ];
  690. * @endcode
  691. * will allow the site to run off of all variants of example.com and
  692. * example.org, with all subdomains included.
  693. */
  694. /**
  695. * The default list of directories that will be ignored by Drupal's file API.
  696. *
  697. * By default ignore node_modules and bower_components folders to avoid issues
  698. * with common frontend tools and recursive scanning of directories looking for
  699. * extensions.
  700. *
  701. * @see file_scan_directory()
  702. * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory()
  703. */
  704. $settings['file_scan_ignore_directories'] = [
  705. 'node_modules',
  706. 'bower_components',
  707. ];
  708. /**
  709. * The default number of entities to update in a batch process.
  710. *
  711. * This is used by update and post-update functions that need to go through and
  712. * change all the entities on a site, so it is useful to increase this number
  713. * if your hosting configuration (i.e. RAM allocation, CPU speed) allows for a
  714. * larger number of entities to be processed in a single batch run.
  715. */
  716. $settings['entity_update_batch_size'] = 50;
  717. /**
  718. * Entity update backup.
  719. *
  720. * This is used to inform the entity storage handler that the backup tables as
  721. * well as the original entity type and field storage definitions should be
  722. * retained after a successful entity update process.
  723. */
  724. $settings['entity_update_backup'] = TRUE;
  725. /**
  726. * Load local development override configuration, if available.
  727. *
  728. * Use settings.local.php to override variables on secondary (staging,
  729. * development, etc) installations of this site. Typically used to disable
  730. * caching, JavaScript/CSS compression, re-routing of outgoing emails, and
  731. * other things that should not happen on development and testing sites.
  732. *
  733. * Keep this code block at the end of this file to take full effect.
  734. */
  735. #
  736. # if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
  737. # include $app_root . '/' . $site_path . '/settings.local.php';
  738. # }