· 7 years ago · Jan 23, 2019, 11:26 AM
1<?php
2
3$conf['image_allow_insecure_derivatives'] = TRUE;
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 * The configuration file to be loaded is based upon the rules below. However
16 * if the multisite aliasing file named sites/sites.php is present, it will be
17 * loaded, and the aliases in the array $sites will override the default
18 * directory rules below. See sites/example.sites.php for more information about
19 * aliases.
20 *
21 * The configuration directory will be discovered by stripping the website's
22 * hostname from left to right and pathname from right to left. The first
23 * configuration file found will be used and any others will be ignored. If no
24 * other configuration file is found then the default configuration file at
25 * 'sites/default' will be used.
26 *
27 * For example, for a fictitious site installed at
28 * http://www.drupal.org:8080/mysite/test/, the 'settings.php' file is searched
29 * for in the following directories:
30 *
31 * - sites/8080.www.drupal.org.mysite.test
32 * - sites/www.drupal.org.mysite.test
33 * - sites/drupal.org.mysite.test
34 * - sites/org.mysite.test
35 *
36 * - sites/8080.www.drupal.org.mysite
37 * - sites/www.drupal.org.mysite
38 * - sites/drupal.org.mysite
39 * - sites/org.mysite
40 *
41 * - sites/8080.www.drupal.org
42 * - sites/www.drupal.org
43 * - sites/drupal.org
44 * - sites/org
45 *
46 * - sites/default
47 *
48 * Note that if you are installing on a non-standard port number, prefix the
49 * hostname with that number. For example,
50 * http://www.drupal.org:8080/mysite/test/ could be loaded from
51 * sites/8080.www.drupal.org.mysite.test/.
52 *
53 * @see example.sites.php
54 * @see conf_path()
55 */
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 * Each database connection is specified as an array of settings,
66 * similar to the following:
67 * @code
68 * array(
69 * 'driver' => 'mysql',
70 * 'database' => 'databasename',
71 * 'username' => 'username',
72 * 'password' => 'password',
73 * 'host' => 'localhost',
74 * 'port' => 3306,
75 * 'prefix' => 'myprefix_',
76 * 'collation' => 'utf8_general_ci',
77 * );
78 * @endcode
79 *
80 * The "driver" property indicates what Drupal database driver the
81 * connection should use. This is usually the same as the name of the
82 * database type, such as mysql or sqlite, but not always. The other
83 * properties will vary depending on the driver. For SQLite, you must
84 * specify a database file name in a directory that is writable by the
85 * webserver. For most other drivers, you must specify a
86 * username, password, host, and database name.
87 *
88 * Some database engines support transactions. In order to enable
89 * transaction support for a given database, set the 'transactions' key
90 * to TRUE. To disable it, set it to FALSE. Note that the default value
91 * varies by driver. For MySQL, the default is FALSE since MyISAM tables
92 * do not support transactions.
93 *
94 * For each database, you may optionally specify multiple "target" databases.
95 * A target database allows Drupal to try to send certain queries to a
96 * different database if it can but fall back to the default connection if not.
97 * That is useful for master/slave replication, as Drupal may try to connect
98 * to a slave server when appropriate and if one is not available will simply
99 * fall back to the single master server.
100 *
101 * The general format for the $databases array is as follows:
102 * @code
103 * $databases['default']['default'] = $info_array;
104 * $databases['default']['slave'][] = $info_array;
105 * $databases['default']['slave'][] = $info_array;
106 * $databases['extra']['default'] = $info_array;
107 * @endcode
108 *
109 * In the above example, $info_array is an array of settings described above.
110 * The first line sets a "default" database that has one master database
111 * (the second level default). The second and third lines create an array
112 * of potential slave databases. Drupal will select one at random for a given
113 * request as needed. The fourth line creates a new database with a name of
114 * "extra".
115 *
116 * For a single database configuration, the following is sufficient:
117 * @code
118 * $databases['default']['default'] = array(
119 * 'driver' => 'mysql',
120 * 'database' => 'databasename',
121 * 'username' => 'username',
122 * 'password' => 'password',
123 * 'host' => 'localhost',
124 * 'prefix' => 'main_',
125 * 'collation' => 'utf8_general_ci',
126 * );
127 * @endcode
128 *
129 * You can optionally set prefixes for some or all database table names
130 * by using the 'prefix' setting. If a prefix is specified, the table
131 * name will be prepended with its value. Be sure to use valid database
132 * characters only, usually alphanumeric and underscore. If no prefixes
133 * are desired, leave it as an empty string ''.
134 *
135 * To have all database names prefixed, set 'prefix' as a string:
136 * @code
137 * 'prefix' => 'main_',
138 * @endcode
139 * To provide prefixes for specific tables, set 'prefix' as an array.
140 * The array's keys are the table names and the values are the prefixes.
141 * The 'default' element is mandatory and holds the prefix for any tables
142 * not specified elsewhere in the array. Example:
143 * @code
144 * 'prefix' => array(
145 * 'default' => 'main_',
146 * 'users' => 'shared_',
147 * 'sessions' => 'shared_',
148 * 'role' => 'shared_',
149 * 'authmap' => 'shared_',
150 * ),
151 * @endcode
152 * You can also use a reference to a schema/database as a prefix. This may be
153 * useful if your Drupal installation exists in a schema that is not the default
154 * or you want to access several databases from the same code base at the same
155 * time.
156 * Example:
157 * @code
158 * 'prefix' => array(
159 * 'default' => 'main.',
160 * 'users' => 'shared.',
161 * 'sessions' => 'shared.',
162 * 'role' => 'shared.',
163 * 'authmap' => 'shared.',
164 * );
165 * @endcode
166 * NOTE: MySQL and SQLite's definition of a schema is a database.
167 *
168 * Advanced users can add or override initial commands to execute when
169 * connecting to the database server, as well as PDO connection settings. For
170 * example, to enable MySQL SELECT queries to exceed the max_join_size system
171 * variable, and to reduce the database connection timeout to 5 seconds:
172 *
173 * @code
174 * $databases['default']['default'] = array(
175 * 'init_commands' => array(
176 * 'big_selects' => 'SET SQL_BIG_SELECTS=1',
177 * ),
178 * 'pdo' => array(
179 * PDO::ATTR_TIMEOUT => 5,
180 * ),
181 * );
182 * @endcode
183 *
184 * WARNING: These defaults are designed for database portability. Changing them
185 * may cause unexpected behavior, including potential data loss.
186 *
187 * @see DatabaseConnection_mysql::__construct
188 * @see DatabaseConnection_pgsql::__construct
189 * @see DatabaseConnection_sqlite::__construct
190 *
191 * Database configuration format:
192 * @code
193 * $databases['default']['default'] = array(
194 * 'driver' => 'mysql',
195 * 'database' => 'databasename',
196 * 'username' => 'username',
197 * 'password' => 'password',
198 * 'host' => 'localhost',
199 * 'prefix' => '',
200 * );
201 * $databases['default']['default'] = array(
202 * 'driver' => 'pgsql',
203 * 'database' => 'databasename',
204 * 'username' => 'username',
205 * 'password' => 'password',
206 * 'host' => 'localhost',
207 * 'prefix' => '',
208 * );
209 * $databases['default']['default'] = array(
210 * 'driver' => 'sqlite',
211 * 'database' => '/path/to/databasefilename',
212 * );
213 * @endcode
214 */
215/**
216 * Access control for update.php script.
217 *
218 * If you are updating your Drupal installation using the update.php script but
219 * are not logged in using either an account with the "Administer software
220 * updates" permission or the site maintenance account (the account that was
221 * created during installation), you will need to modify the access check
222 * statement below. Change the FALSE to a TRUE to disable the access check.
223 * After finishing the upgrade, be sure to open this file again and change the
224 * TRUE back to a FALSE!
225 */
226$update_free_access = FALSE;
227
228/**
229 * Salt for one-time login links and cancel links, form tokens, etc.
230 *
231 * This variable will be set to a random value by the installer. All one-time
232 * login links will be invalidated if the value is changed. Note that if your
233 * site is deployed on a cluster of web servers, you must ensure that this
234 * variable has the same value on each server. If this variable is empty, a hash
235 * of the serialized database credentials will be used as a fallback salt.
236 *
237 * For enhanced security, you may set this variable to a value using the
238 * contents of a file outside your docroot that is never saved together
239 * with any backups of your Drupal files and database.
240 *
241 * Example:
242 * $drupal_hash_salt = file_get_contents('/home/example/salt.txt');
243 *
244 */
245$drupal_hash_salt = '6yZISgOlrxCbGfUWuWVdZKX3502oNg0YdgK_MEglS8c';
246
247/**
248 * Base URL (optional).
249 *
250 * If Drupal is generating incorrect URLs on your site, which could
251 * be in HTML headers (links to CSS and JS files) or visible links on pages
252 * (such as in menus), uncomment the Base URL statement below (remove the
253 * leading hash sign) and fill in the absolute URL to your Drupal installation.
254 *
255 * You might also want to force users to use a given domain.
256 * See the .htaccess file for more information.
257 *
258 * Examples:
259 * $base_url = 'http://www.example.com';
260 * $base_url = 'http://www.example.com:8888';
261 * $base_url = 'http://www.example.com/drupal';
262 * $base_url = 'https://www.example.com:8888/drupal';
263 *
264 * It is not allowed to have a trailing slash; Drupal will add it
265 * for you.
266 */
267# $base_url = 'http://www.example.com'; // NO trailing slash!
268
269/**
270 * PHP settings:
271 *
272 * To see what PHP settings are possible, including whether they can be set at
273 * runtime (by using ini_set()), read the PHP documentation:
274 * http://www.php.net/manual/ini.list.php
275 * See drupal_environment_initialize() in includes/bootstrap.inc for required
276 * runtime settings and the .htaccess file for non-runtime settings. Settings
277 * defined there should not be duplicated here so as to avoid conflict issues.
278 */
279
280/**
281 * Some distributions of Linux (most notably Debian) ship their PHP
282 * installations with garbage collection (gc) disabled. Since Drupal depends on
283 * PHP's garbage collection for clearing sessions, ensure that garbage
284 * collection occurs by using the most common settings.
285 */
286ini_set('session.gc_probability', 1);
287ini_set('session.gc_divisor', 100);
288
289/**
290 * Set session lifetime (in seconds), i.e. the time from the user's last visit
291 * to the active session may be deleted by the session garbage collector. When
292 * a session is deleted, authenticated users are logged out, and the contents
293 * of the user's $_SESSION variable is discarded.
294 */
295ini_set('session.gc_maxlifetime', 200000);
296
297/**
298 * Set session cookie lifetime (in seconds), i.e. the time from the session is
299 * created to the cookie expires, i.e. when the browser is expected to discard
300 * the cookie. The value 0 means "until the browser is closed".
301 */
302ini_set('session.cookie_lifetime', 2000000);
303
304/**
305 * If you encounter a situation where users post a large amount of text, and
306 * the result is stripped out upon viewing but can still be edited, Drupal's
307 * output filter may not have sufficient memory to process it. If you
308 * experience this issue, you may wish to uncomment the following two lines
309 * and increase the limits of these variables. For more information, see
310 * http://php.net/manual/pcre.configuration.php.
311 */
312# ini_set('pcre.backtrack_limit', 200000);
313# ini_set('pcre.recursion_limit', 200000);
314
315/**
316 * Drupal automatically generates a unique session cookie name for each site
317 * based on its full domain name. If you have multiple domains pointing at the
318 * same Drupal site, you can either redirect them all to a single domain (see
319 * comment in .htaccess), or uncomment the line below and specify their shared
320 * base domain. Doing so assures that users remain logged in as they cross
321 * between your various domains. Make sure to always start the $cookie_domain
322 * with a leading dot, as per RFC 2109.
323 */
324# $cookie_domain = '.example.com';
325
326/**
327 * Variable overrides:
328 *
329 * To override specific entries in the 'variable' table for this site,
330 * set them here. You usually don't need to use this feature. This is
331 * useful in a configuration file for a vhost or directory, rather than
332 * the default settings.php. Any configuration setting from the 'variable'
333 * table can be given a new value. Note that any values you provide in
334 * these variable overrides will not be modifiable from the Drupal
335 * administration interface.
336 *
337 * The following overrides are examples:
338 * - site_name: Defines the site's name.
339 * - theme_default: Defines the default theme for this site.
340 * - anonymous: Defines the human-readable name of anonymous users.
341 * Remove the leading hash signs to enable.
342 */
343# $conf['site_name'] = 'My Drupal site';
344$conf['theme_default'] = 'ba';
345# $conf['anonymous'] = 'Visitor';
346
347/**
348 * A custom theme can be set for the offline page. This applies when the site
349 * is explicitly set to maintenance mode through the administration page or when
350 * the database is inactive due to an error. It can be set through the
351 * 'maintenance_theme' key. The template file should also be copied into the
352 * theme. It is located inside 'modules/system/maintenance-page.tpl.php'.
353 * Note: This setting does not apply to installation and update pages.
354 */
355# $conf['maintenance_theme'] = 'bartik';
356
357/**
358 * Reverse Proxy Configuration:
359 *
360 * Reverse proxy servers are often used to enhance the performance
361 * of heavily visited sites and may also provide other site caching,
362 * security, or encryption benefits. In an environment where Drupal
363 * is behind a reverse proxy, the real IP address of the client should
364 * be determined such that the correct client IP address is available
365 * to Drupal's logging, statistics, and access management systems. In
366 * the most simple scenario, the proxy server will add an
367 * X-Forwarded-For header to the request that contains the client IP
368 * address. However, HTTP headers are vulnerable to spoofing, where a
369 * malicious client could bypass restrictions by setting the
370 * X-Forwarded-For header directly. Therefore, Drupal's proxy
371 * configuration requires the IP addresses of all remote proxies to be
372 * specified in $conf['reverse_proxy_addresses'] to work correctly.
373 *
374 * Enable this setting to get Drupal to determine the client IP from
375 * the X-Forwarded-For header (or $conf['reverse_proxy_header'] if set).
376 * If you are unsure about this setting, do not have a reverse proxy,
377 * or Drupal operates in a shared hosting environment, this setting
378 * should remain commented out.
379 *
380 * In order for this setting to be used you must specify every possible
381 * reverse proxy IP address in $conf['reverse_proxy_addresses'].
382 * If a complete list of reverse proxies is not available in your
383 * environment (for example, if you use a CDN) you may set the
384 * $_SERVER['REMOTE_ADDR'] variable directly in settings.php.
385 * Be aware, however, that it is likely that this would allow IP
386 * address spoofing unless more advanced precautions are taken.
387 */
388# $conf['reverse_proxy'] = TRUE;
389
390/**
391 * Specify every reverse proxy IP address in your environment.
392 * This setting is required if $conf['reverse_proxy'] is TRUE.
393 */
394# $conf['reverse_proxy_addresses'] = array('a.b.c.d', ...);
395
396/**
397 * Set this value if your proxy server sends the client IP in a header
398 * other than X-Forwarded-For.
399 */
400# $conf['reverse_proxy_header'] = 'HTTP_X_CLUSTER_CLIENT_IP';
401
402/**
403 * Page caching:
404 *
405 * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page
406 * views. This tells a HTTP proxy that it may return a page from its local
407 * cache without contacting the web server, if the user sends the same Cookie
408 * header as the user who originally requested the cached page. Without "Vary:
409 * Cookie", authenticated users would also be served the anonymous page from
410 * the cache. If the site has mostly anonymous users except a few known
411 * editors/administrators, the Vary header can be omitted. This allows for
412 * better caching in HTTP proxies (including reverse proxies), i.e. even if
413 * clients send different cookies, they still get content served from the cache.
414 * However, authenticated users should access the site directly (i.e. not use an
415 * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid
416 * getting cached pages from the proxy.
417 */
418# $conf['omit_vary_cookie'] = TRUE;
419
420/**
421 * CSS/JS aggregated file gzip compression:
422 *
423 * By default, when CSS or JS aggregation and clean URLs are enabled Drupal will
424 * store a gzip compressed (.gz) copy of the aggregated files. If this file is
425 * available then rewrite rules in the default .htaccess file will serve these
426 * files to browsers that accept gzip encoded content. This allows pages to load
427 * faster for these users and has minimal impact on server load. If you are
428 * using a webserver other than Apache httpd, or a caching reverse proxy that is
429 * configured to cache and compress these files itself you may want to uncomment
430 * one or both of the below lines, which will prevent gzip files being stored.
431 */
432# $conf['css_gzip_compression'] = FALSE;
433# $conf['js_gzip_compression'] = FALSE;
434
435/**
436 * String overrides:
437 *
438 * To override specific strings on your site with or without enabling the Locale
439 * module, add an entry to this list. This functionality allows you to change
440 * a small number of your site's default English language interface strings.
441 *
442 * Remove the leading hash signs to enable.
443 */
444# $conf['locale_custom_strings_en'][''] = array(
445# 'forum' => 'Discussion board',
446# '@count min' => '@count minutes',
447# );
448
449/**
450 *
451 * IP blocking:
452 *
453 * To bypass database queries for denied IP addresses, use this setting.
454 * Drupal queries the {blocked_ips} table by default on every page request
455 * for both authenticated and anonymous users. This allows the system to
456 * block IP addresses from within the administrative interface and before any
457 * modules are loaded. However on high traffic websites you may want to avoid
458 * this query, allowing you to bypass database access altogether for anonymous
459 * users under certain caching configurations.
460 *
461 * If using this setting, you will need to add back any IP addresses which
462 * you may have blocked via the administrative interface. Each element of this
463 * array represents a blocked IP address. Uncommenting the array and leaving it
464 * empty will have the effect of disabling IP blocking on your site.
465 *
466 * Remove the leading hash signs to enable.
467 */
468# $conf['blocked_ips'] = array(
469# 'a.b.c.d',
470# );
471
472/**
473 * Fast 404 pages:
474 *
475 * Drupal can generate fully themed 404 pages. However, some of these responses
476 * are for images or other resource files that are not displayed to the user.
477 * This can waste bandwidth, and also generate server load.
478 *
479 * The options below return a simple, fast 404 page for URLs matching a
480 * specific pattern:
481 * - 404_fast_paths_exclude: A regular expression to match paths to exclude,
482 * such as images generated by image styles, or dynamically-resized images.
483 * If you need to add more paths, you can add '|path' to the expression.
484 * - 404_fast_paths: A regular expression to match paths that should return a
485 * simple 404 page, rather than the fully themed 404 page. If you don't have
486 * any aliases ending in htm or html you can add '|s?html?' to the expression.
487 * - 404_fast_html: The html to return for simple 404 pages.
488 *
489 * Add leading hash signs if you would like to disable this functionality.
490 */
491$conf['404_fast_paths_exclude'] = '/\/(?:styles)\//';
492$conf['404_fast_paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
493$conf['404_fast_html'] = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><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>';
494
495/**
496 * By default the page request process will return a fast 404 page for missing
497 * files if they match the regular expression set in '404_fast_paths' and not
498 * '404_fast_paths_exclude' above. 404 errors will simultaneously be logged in
499 * the Drupal system log.
500 *
501 * You can choose to return a fast 404 page earlier for missing pages (as soon
502 * as settings.php is loaded) by uncommenting the line below. This speeds up
503 * server response time when loading 404 error pages and prevents the 404 error
504 * from being logged in the Drupal system log. In order to prevent valid pages
505 * such as image styles and other generated content that may match the
506 * '404_fast_html' regular expression from returning 404 errors, it is necessary
507 * to add them to the '404_fast_paths_exclude' regular expression above. Make
508 * sure that you understand the effects of this feature before uncommenting the
509 * line below.
510 */
511# drupal_fast_404();
512
513/**
514 * External access proxy settings:
515 *
516 * If your site must access the Internet via a web proxy then you can enter
517 * the proxy settings here. Currently only basic authentication is supported
518 * by using the username and password variables. The proxy_user_agent variable
519 * can be set to NULL for proxies that require no User-Agent header or to a
520 * non-empty string for proxies that limit requests to a specific agent. The
521 * proxy_exceptions variable is an array of host names to be accessed directly,
522 * not via proxy.
523 */
524# $conf['proxy_server'] = '';
525# $conf['proxy_port'] = 8080;
526# $conf['proxy_username'] = '';
527# $conf['proxy_password'] = '';
528# $conf['proxy_user_agent'] = '';
529# $conf['proxy_exceptions'] = array('127.0.0.1', 'localhost');
530
531/**
532 * Authorized file system operations:
533 *
534 * The Update manager module included with Drupal provides a mechanism for
535 * site administrators to securely install missing updates for the site
536 * directly through the web user interface. On securely-configured servers,
537 * the Update manager will require the administrator to provide SSH or FTP
538 * credentials before allowing the installation to proceed; this allows the
539 * site to update the new files as the user who owns all the Drupal files,
540 * instead of as the user the webserver is running as. On servers where the
541 * webserver user is itself the owner of the Drupal files, the administrator
542 * will not be prompted for SSH or FTP credentials (note that these server
543 * setups are common on shared hosting, but are inherently insecure).
544 *
545 * Some sites might wish to disable the above functionality, and only update
546 * the code directly via SSH or FTP themselves. This setting completely
547 * disables all functionality related to these authorized file operations.
548 *
549 * @see http://drupal.org/node/244924
550 *
551 * Remove the leading hash signs to disable.
552 */
553# $conf['allow_authorize_operations'] = FALSE;
554
555$databases = array (
556 'default' =>
557 array(
558 'default' =>
559 array(
560 'database' => 'blueair_db',
561 'username' => 'root',
562 'password' => 'blueairadmin123',
563 'host' => 'localhost',
564 //'port' => '8080',
565 'driver' => 'mysql',
566 'prefix' => '',
567 ),
568 ),
569 'blueair_life' =>
570 array (
571 'default' =>
572 array (
573 'database' => 'blueair_life',
574 'username' => 'root',
575 'password' => 'blueairadmin123',
576 'host' => 'localhost',
577 'port' => '',
578 'driver' => 'mysql',
579 'prefix' => 'wpblueairopt_',
580 ),
581 ),
582 );
583
584ini_set('memory_limit', '4048M');
585 $base_url = 'http://legacy.balthazar.rocks';
586
587//$conf['cache_backends'] = array('sites/all/modules/filecache/filecache.inc');
588//$conf['cache_default_class'] = 'DrupalFileCache';
589//$conf['filecache_directory'] = '../filecache/filecache-' . substr(conf_path(), 6);