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