default.settings.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  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 $settings['config_sync_directory'] specifies the location of file system
  228. * directory used for syncing configuration data. On install, the directory is
  229. * created. This is used for configuration imports.
  230. *
  231. * The default location for this directory is inside a randomly-named
  232. * directory in the public files path. The setting below allows you to set
  233. * its location.
  234. */
  235. # $settings['config_sync_directory'] = '/directory/outside/webroot';
  236. /**
  237. * Settings:
  238. *
  239. * $settings contains environment-specific configuration, such as the files
  240. * directory and reverse proxy address, and temporary configuration, such as
  241. * security overrides.
  242. *
  243. * @see \Drupal\Core\Site\Settings::get()
  244. */
  245. /**
  246. * Salt for one-time login links, cancel links, form tokens, etc.
  247. *
  248. * This variable will be set to a random value by the installer. All one-time
  249. * login links will be invalidated if the value is changed. Note that if your
  250. * site is deployed on a cluster of web servers, you must ensure that this
  251. * variable has the same value on each server.
  252. *
  253. * For enhanced security, you may set this variable to the contents of a file
  254. * outside your document root; you should also ensure that this file is not
  255. * stored with backups of your database.
  256. *
  257. * Example:
  258. * @code
  259. * $settings['hash_salt'] = file_get_contents('/home/example/salt.txt');
  260. * @endcode
  261. */
  262. $settings['hash_salt'] = '';
  263. /**
  264. * Deployment identifier.
  265. *
  266. * Drupal's dependency injection container will be automatically invalidated and
  267. * rebuilt when the Drupal core version changes. When updating contributed or
  268. * custom code that changes the container, changing this identifier will also
  269. * allow the container to be invalidated as soon as code is deployed.
  270. */
  271. # $settings['deployment_identifier'] = \Drupal::VERSION;
  272. /**
  273. * Access control for update.php script.
  274. *
  275. * If you are updating your Drupal installation using the update.php script but
  276. * are not logged in using either an account with the "Administer software
  277. * updates" permission or the site maintenance account (the account that was
  278. * created during installation), you will need to modify the access check
  279. * statement below. Change the FALSE to a TRUE to disable the access check.
  280. * After finishing the upgrade, be sure to open this file again and change the
  281. * TRUE back to a FALSE!
  282. */
  283. $settings['update_free_access'] = FALSE;
  284. /**
  285. * External access proxy settings:
  286. *
  287. * If your site must access the Internet via a web proxy then you can enter the
  288. * proxy settings here. Set the full URL of the proxy, including the port, in
  289. * variables:
  290. * - $settings['http_client_config']['proxy']['http']: The proxy URL for HTTP
  291. * requests.
  292. * - $settings['http_client_config']['proxy']['https']: The proxy URL for HTTPS
  293. * requests.
  294. * You can pass in the user name and password for basic authentication in the
  295. * URLs in these settings.
  296. *
  297. * You can also define an array of host names that can be accessed directly,
  298. * bypassing the proxy, in $settings['http_client_config']['proxy']['no'].
  299. */
  300. # $settings['http_client_config']['proxy']['http'] = 'http://proxy_user:proxy_pass@example.com:8080';
  301. # $settings['http_client_config']['proxy']['https'] = 'http://proxy_user:proxy_pass@example.com:8080';
  302. # $settings['http_client_config']['proxy']['no'] = ['127.0.0.1', 'localhost'];
  303. /**
  304. * Reverse Proxy Configuration:
  305. *
  306. * Reverse proxy servers are often used to enhance the performance
  307. * of heavily visited sites and may also provide other site caching,
  308. * security, or encryption benefits. In an environment where Drupal
  309. * is behind a reverse proxy, the real IP address of the client should
  310. * be determined such that the correct client IP address is available
  311. * to Drupal's logging, statistics, and access management systems. In
  312. * the most simple scenario, the proxy server will add an
  313. * X-Forwarded-For header to the request that contains the client IP
  314. * address. However, HTTP headers are vulnerable to spoofing, where a
  315. * malicious client could bypass restrictions by setting the
  316. * X-Forwarded-For header directly. Therefore, Drupal's proxy
  317. * configuration requires the IP addresses of all remote proxies to be
  318. * specified in $settings['reverse_proxy_addresses'] to work correctly.
  319. *
  320. * Enable this setting to get Drupal to determine the client IP from the
  321. * X-Forwarded-For header. If you are unsure about this setting, do not have a
  322. * reverse proxy, or Drupal operates in a shared hosting environment, this
  323. * setting should remain commented out.
  324. *
  325. * In order for this setting to be used you must specify every possible
  326. * reverse proxy IP address in $settings['reverse_proxy_addresses'].
  327. * If a complete list of reverse proxies is not available in your
  328. * environment (for example, if you use a CDN) you may set the
  329. * $_SERVER['REMOTE_ADDR'] variable directly in settings.php.
  330. * Be aware, however, that it is likely that this would allow IP
  331. * address spoofing unless more advanced precautions are taken.
  332. */
  333. # $settings['reverse_proxy'] = TRUE;
  334. /**
  335. * Specify every reverse proxy IP address in your environment.
  336. * This setting is required if $settings['reverse_proxy'] is TRUE.
  337. */
  338. # $settings['reverse_proxy_addresses'] = ['a.b.c.d', ...];
  339. /**
  340. * Reverse proxy trusted headers.
  341. *
  342. * Sets which headers to trust from your reverse proxy.
  343. *
  344. * Common values are:
  345. * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL
  346. * - \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED
  347. *
  348. * Note the default value of
  349. * @code
  350. * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED
  351. * @endcode
  352. * is not secure by default. The value should be set to only the specific
  353. * headers the reverse proxy uses. For example:
  354. * @code
  355. * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL
  356. * @endcode
  357. * This would trust the following headers:
  358. * - X_FORWARDED_FOR
  359. * - X_FORWARDED_HOST
  360. * - X_FORWARDED_PROTO
  361. * - X_FORWARDED_PORT
  362. *
  363. * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL
  364. * @see \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED
  365. * @see \Symfony\Component\HttpFoundation\Request::setTrustedProxies
  366. */
  367. # $settings['reverse_proxy_trusted_headers'] = \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_ALL | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED;
  368. /**
  369. * Page caching:
  370. *
  371. * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page
  372. * views. This tells a HTTP proxy that it may return a page from its local
  373. * cache without contacting the web server, if the user sends the same Cookie
  374. * header as the user who originally requested the cached page. Without "Vary:
  375. * Cookie", authenticated users would also be served the anonymous page from
  376. * the cache. If the site has mostly anonymous users except a few known
  377. * editors/administrators, the Vary header can be omitted. This allows for
  378. * better caching in HTTP proxies (including reverse proxies), i.e. even if
  379. * clients send different cookies, they still get content served from the cache.
  380. * However, authenticated users should access the site directly (i.e. not use an
  381. * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid
  382. * getting cached pages from the proxy.
  383. */
  384. # $settings['omit_vary_cookie'] = TRUE;
  385. /**
  386. * Cache TTL for client error (4xx) responses.
  387. *
  388. * Items cached per-URL tend to result in a large number of cache items, and
  389. * this can be problematic on 404 pages which by their nature are unbounded. A
  390. * fixed TTL can be set for these items, defaulting to one hour, so that cache
  391. * backends which do not support LRU can purge older entries. To disable caching
  392. * of client error responses set the value to 0. Currently applies only to
  393. * page_cache module.
  394. */
  395. # $settings['cache_ttl_4xx'] = 3600;
  396. /**
  397. * Expiration of cached forms.
  398. *
  399. * Drupal's Form API stores details of forms in a cache and these entries are
  400. * kept for at least 6 hours by default. Expired entries are cleared by cron.
  401. *
  402. * @see \Drupal\Core\Form\FormCache::setCache()
  403. */
  404. # $settings['form_cache_expiration'] = 21600;
  405. /**
  406. * Class Loader.
  407. *
  408. * If the APC extension is detected, the Symfony APC class loader is used for
  409. * performance reasons. Detection can be prevented by setting
  410. * class_loader_auto_detect to false, as in the example below.
  411. */
  412. # $settings['class_loader_auto_detect'] = FALSE;
  413. /*
  414. * If the APC extension is not detected, either because APC is missing or
  415. * because auto-detection has been disabled, auto-loading falls back to
  416. * Composer's ClassLoader, which is good for development as it does not break
  417. * when code is moved in the file system. You can also decorate the base class
  418. * loader with another cached solution than the Symfony APC class loader, as
  419. * all production sites should have a cached class loader of some sort enabled.
  420. *
  421. * To do so, you may decorate and replace the local $class_loader variable. For
  422. * example, to use Symfony's APC class loader without automatic detection,
  423. * uncomment the code below.
  424. */
  425. /*
  426. if ($settings['hash_salt']) {
  427. $prefix = 'drupal.' . hash('sha256', 'drupal.' . $settings['hash_salt']);
  428. $apc_loader = new \Symfony\Component\ClassLoader\ApcClassLoader($prefix, $class_loader);
  429. unset($prefix);
  430. $class_loader->unregister();
  431. $apc_loader->register();
  432. $class_loader = $apc_loader;
  433. }
  434. */
  435. /**
  436. * Authorized file system operations:
  437. *
  438. * The Update Manager module included with Drupal provides a mechanism for
  439. * site administrators to securely install missing updates for the site
  440. * directly through the web user interface. On securely-configured servers,
  441. * the Update manager will require the administrator to provide SSH or FTP
  442. * credentials before allowing the installation to proceed; this allows the
  443. * site to update the new files as the user who owns all the Drupal files,
  444. * instead of as the user the webserver is running as. On servers where the
  445. * webserver user is itself the owner of the Drupal files, the administrator
  446. * will not be prompted for SSH or FTP credentials (note that these server
  447. * setups are common on shared hosting, but are inherently insecure).
  448. *
  449. * Some sites might wish to disable the above functionality, and only update
  450. * the code directly via SSH or FTP themselves. This setting completely
  451. * disables all functionality related to these authorized file operations.
  452. *
  453. * @see https://www.drupal.org/node/244924
  454. *
  455. * Remove the leading hash signs to disable.
  456. */
  457. # $settings['allow_authorize_operations'] = FALSE;
  458. /**
  459. * Default mode for directories and files written by Drupal.
  460. *
  461. * Value should be in PHP Octal Notation, with leading zero.
  462. */
  463. # $settings['file_chmod_directory'] = 0775;
  464. # $settings['file_chmod_file'] = 0664;
  465. /**
  466. * Public file base URL:
  467. *
  468. * An alternative base URL to be used for serving public files. This must
  469. * include any leading directory path.
  470. *
  471. * A different value from the domain used by Drupal to be used for accessing
  472. * public files. This can be used for a simple CDN integration, or to improve
  473. * security by serving user-uploaded files from a different domain or subdomain
  474. * pointing to the same server. Do not include a trailing slash.
  475. */
  476. # $settings['file_public_base_url'] = 'http://downloads.example.com/files';
  477. /**
  478. * Public file path:
  479. *
  480. * A local file system path where public files will be stored. This directory
  481. * must exist and be writable by Drupal. This directory must be relative to
  482. * the Drupal installation directory and be accessible over the web.
  483. */
  484. # $settings['file_public_path'] = 'sites/default/files';
  485. /**
  486. * Private file path:
  487. *
  488. * A local file system path where private files will be stored. This directory
  489. * must be absolute, outside of the Drupal installation directory and not
  490. * accessible over the web.
  491. *
  492. * Note: Caches need to be cleared when this value is changed to make the
  493. * private:// stream wrapper available to the system.
  494. *
  495. * See https://www.drupal.org/documentation/modules/file for more information
  496. * about securing private files.
  497. */
  498. # $settings['file_private_path'] = '';
  499. /**
  500. * Temporary file path:
  501. *
  502. * A local file system path where temporary 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. * If this is not set, the default for the operating system will be used.
  507. *
  508. * @see \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory()
  509. */
  510. # $settings['file_temp_path'] = '/tmp';
  511. /**
  512. * Session write interval:
  513. *
  514. * Set the minimum interval between each session write to database.
  515. * For performance reasons it defaults to 180.
  516. */
  517. # $settings['session_write_interval'] = 180;
  518. /**
  519. * String overrides:
  520. *
  521. * To override specific strings on your site with or without enabling the Locale
  522. * module, add an entry to this list. This functionality allows you to change
  523. * a small number of your site's default English language interface strings.
  524. *
  525. * Remove the leading hash signs to enable.
  526. *
  527. * The "en" part of the variable name, is dynamic and can be any langcode of
  528. * any added language. (eg locale_custom_strings_de for german).
  529. */
  530. # $settings['locale_custom_strings_en'][''] = [
  531. # 'forum' => 'Discussion board',
  532. # '@count min' => '@count minutes',
  533. # ];
  534. /**
  535. * A custom theme for the offline page:
  536. *
  537. * This applies when the site is explicitly set to maintenance mode through the
  538. * administration page or when the database is inactive due to an error.
  539. * The template file should also be copied into the theme. It is located inside
  540. * 'core/modules/system/templates/maintenance-page.html.twig'.
  541. *
  542. * Note: This setting does not apply to installation and update pages.
  543. */
  544. # $settings['maintenance_theme'] = 'bartik';
  545. /**
  546. * PHP settings:
  547. *
  548. * To see what PHP settings are possible, including whether they can be set at
  549. * runtime (by using ini_set()), read the PHP documentation:
  550. * http://php.net/manual/ini.list.php
  551. * See \Drupal\Core\DrupalKernel::bootEnvironment() for required runtime
  552. * settings and the .htaccess file for non-runtime settings.
  553. * Settings defined there should not be duplicated here so as to avoid conflict
  554. * issues.
  555. */
  556. /**
  557. * If you encounter a situation where users post a large amount of text, and
  558. * the result is stripped out upon viewing but can still be edited, Drupal's
  559. * output filter may not have sufficient memory to process it. If you
  560. * experience this issue, you may wish to uncomment the following two lines
  561. * and increase the limits of these variables. For more information, see
  562. * http://php.net/manual/pcre.configuration.php.
  563. */
  564. # ini_set('pcre.backtrack_limit', 200000);
  565. # ini_set('pcre.recursion_limit', 200000);
  566. /**
  567. * Configuration overrides.
  568. *
  569. * To globally override specific configuration values for this site,
  570. * set them here. You usually don't need to use this feature. This is
  571. * useful in a configuration file for a vhost or directory, rather than
  572. * the default settings.php.
  573. *
  574. * Note that any values you provide in these variable overrides will not be
  575. * viewable from the Drupal administration interface. The administration
  576. * interface displays the values stored in configuration so that you can stage
  577. * changes to other environments that don't have the overrides.
  578. *
  579. * There are particular configuration values that are risky to override. For
  580. * example, overriding the list of installed modules in 'core.extension' is not
  581. * supported as module install or uninstall has not occurred. Other examples
  582. * include field storage configuration, because it has effects on database
  583. * structure, and 'core.menu.static_menu_link_overrides' since this is cached in
  584. * a way that is not config override aware. Also, note that changing
  585. * configuration values in settings.php will not fire any of the configuration
  586. * change events.
  587. */
  588. # $config['system.site']['name'] = 'My Drupal site';
  589. # $config['user.settings']['anonymous'] = 'Visitor';
  590. /**
  591. * Fast 404 pages:
  592. *
  593. * Drupal can generate fully themed 404 pages. However, some of these responses
  594. * are for images or other resource files that are not displayed to the user.
  595. * This can waste bandwidth, and also generate server load.
  596. *
  597. * The options below return a simple, fast 404 page for URLs matching a
  598. * specific pattern:
  599. * - $config['system.performance']['fast_404']['exclude_paths']: A regular
  600. * expression to match paths to exclude, such as images generated by image
  601. * styles, or dynamically-resized images. The default pattern provided below
  602. * also excludes the private file system. If you need to add more paths, you
  603. * can add '|path' to the expression.
  604. * - $config['system.performance']['fast_404']['paths']: A regular expression to
  605. * match paths that should return a simple 404 page, rather than the fully
  606. * themed 404 page. If you don't have any aliases ending in htm or html you
  607. * can add '|s?html?' to the expression.
  608. * - $config['system.performance']['fast_404']['html']: The html to return for
  609. * simple 404 pages.
  610. *
  611. * Remove the leading hash signs if you would like to alter this functionality.
  612. */
  613. # $config['system.performance']['fast_404']['exclude_paths'] = '/\/(?:styles)|(?:system\/files)\//';
  614. # $config['system.performance']['fast_404']['paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
  615. # $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>';
  616. /**
  617. * Load services definition file.
  618. */
  619. $settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml';
  620. /**
  621. * Override the default service container class.
  622. *
  623. * This is useful for example to trace the service container for performance
  624. * tracking purposes, for testing a service container with an error condition or
  625. * to test a service container that throws an exception.
  626. */
  627. # $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container';
  628. /**
  629. * Override the default yaml parser class.
  630. *
  631. * Provide a fully qualified class name here if you would like to provide an
  632. * alternate implementation YAML parser. The class must implement the
  633. * \Drupal\Component\Serialization\SerializationInterface interface.
  634. */
  635. # $settings['yaml_parser_class'] = NULL;
  636. /**
  637. * Trusted host configuration.
  638. *
  639. * Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host
  640. * header spoofing.
  641. *
  642. * To enable the trusted host mechanism, you enable your allowable hosts
  643. * in $settings['trusted_host_patterns']. This should be an array of regular
  644. * expression patterns, without delimiters, representing the hosts you would
  645. * like to allow.
  646. *
  647. * For example:
  648. * @code
  649. * $settings['trusted_host_patterns'] = [
  650. * '^www\.example\.com$',
  651. * ];
  652. * @endcode
  653. * will allow the site to only run from www.example.com.
  654. *
  655. * If you are running multisite, or if you are running your site from
  656. * different domain names (eg, you don't redirect http://www.example.com to
  657. * http://example.com), you should specify all of the host patterns that are
  658. * allowed by your site.
  659. *
  660. * For example:
  661. * @code
  662. * $settings['trusted_host_patterns'] = [
  663. * '^example\.com$',
  664. * '^.+\.example\.com$',
  665. * '^example\.org$',
  666. * '^.+\.example\.org$',
  667. * ];
  668. * @endcode
  669. * will allow the site to run off of all variants of example.com and
  670. * example.org, with all subdomains included.
  671. */
  672. /**
  673. * The default list of directories that will be ignored by Drupal's file API.
  674. *
  675. * By default ignore node_modules and bower_components folders to avoid issues
  676. * with common frontend tools and recursive scanning of directories looking for
  677. * extensions.
  678. *
  679. * @see \Drupal\Core\File\FileSystemInterface::scanDirectory()
  680. * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory()
  681. */
  682. $settings['file_scan_ignore_directories'] = [
  683. 'node_modules',
  684. 'bower_components',
  685. ];
  686. /**
  687. * The default number of entities to update in a batch process.
  688. *
  689. * This is used by update and post-update functions that need to go through and
  690. * change all the entities on a site, so it is useful to increase this number
  691. * if your hosting configuration (i.e. RAM allocation, CPU speed) allows for a
  692. * larger number of entities to be processed in a single batch run.
  693. */
  694. $settings['entity_update_batch_size'] = 50;
  695. /**
  696. * Entity update backup.
  697. *
  698. * This is used to inform the entity storage handler that the backup tables as
  699. * well as the original entity type and field storage definitions should be
  700. * retained after a successful entity update process.
  701. */
  702. $settings['entity_update_backup'] = TRUE;
  703. /**
  704. * Load local development override configuration, if available.
  705. *
  706. * Use settings.local.php to override variables on secondary (staging,
  707. * development, etc) installations of this site. Typically used to disable
  708. * caching, JavaScript/CSS compression, re-routing of outgoing emails, and
  709. * other things that should not happen on development and testing sites.
  710. *
  711. * Keep this code block at the end of this file to take full effect.
  712. */
  713. #
  714. # if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
  715. # include $app_root . '/' . $site_path . '/settings.local.php';
  716. # }