settings.php 29 KB

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