-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce wp-config-pantheon, set WP_ENVIRONMENT_TYPE by Pantheon env…
…ironment
- Loading branch information
Showing
3 changed files
with
95 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?php | ||
/** | ||
* Pantheon platform settings. | ||
* | ||
* IMPORTANT NOTE: | ||
* Do not modify this file. This file is maintained by Pantheon. | ||
* | ||
* Site-specific modifications belong in wp-config.php, not this file. This | ||
* file may change in future releases and modifications would cause conflicts | ||
* when attempting to apply upstream updates. | ||
*/ | ||
|
||
// ** MySQL settings - included in the Pantheon Environment ** // | ||
/** The name of the database for WordPress */ | ||
define('DB_NAME', $_ENV['DB_NAME']); | ||
|
||
/** MySQL database username */ | ||
define('DB_USER', $_ENV['DB_USER']); | ||
|
||
/** MySQL database password */ | ||
define('DB_PASSWORD', $_ENV['DB_PASSWORD']); | ||
|
||
/** MySQL hostname; on Pantheon this includes a specific port number. */ | ||
define('DB_HOST', $_ENV['DB_HOST'] . ':' . $_ENV['DB_PORT']); | ||
|
||
/** Database Charset to use in creating database tables. */ | ||
define('DB_CHARSET', 'utf8mb4'); | ||
|
||
/** The Database Collate type. Don't change this if in doubt. */ | ||
define('DB_COLLATE', ''); | ||
|
||
/**#@+ | ||
* Authentication Unique Keys and Salts. | ||
* | ||
* Change these to different unique phrases! | ||
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} | ||
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. | ||
* | ||
* Pantheon sets these values for you also. If you want to shuffle them you | ||
* must contact support: https://pantheon.io/docs/getting-support | ||
* | ||
* @since 2.6.0 | ||
*/ | ||
define('AUTH_KEY', $_ENV['AUTH_KEY']); | ||
define('SECURE_AUTH_KEY', $_ENV['SECURE_AUTH_KEY']); | ||
define('LOGGED_IN_KEY', $_ENV['LOGGED_IN_KEY']); | ||
define('NONCE_KEY', $_ENV['NONCE_KEY']); | ||
define('AUTH_SALT', $_ENV['AUTH_SALT']); | ||
define('SECURE_AUTH_SALT', $_ENV['SECURE_AUTH_SALT']); | ||
define('LOGGED_IN_SALT', $_ENV['LOGGED_IN_SALT']); | ||
define('NONCE_SALT', $_ENV['NONCE_SALT']); | ||
/**#@-*/ | ||
|
||
/** A couple extra tweaks to help things run well on Pantheon. **/ | ||
if (isset($_SERVER['HTTP_HOST'])) { | ||
// HTTP is still the default scheme for now. | ||
$scheme = 'http'; | ||
// If we have detected that the end use is HTTPS, make sure we pass that | ||
// through here, so <img> tags and the like don't generate mixed-mode | ||
// content warnings. | ||
if (isset($_SERVER['HTTP_USER_AGENT_HTTPS']) && $_SERVER['HTTP_USER_AGENT_HTTPS'] == 'ON') { | ||
$scheme = 'https'; | ||
$_SERVER['HTTPS'] = 'on'; | ||
} | ||
define('WP_HOME', $scheme . '://' . $_SERVER['HTTP_HOST']); | ||
define('WP_SITEURL', $scheme . '://' . $_SERVER['HTTP_HOST']); | ||
} | ||
// Don't show deprecations; useful under PHP 5.5 | ||
error_reporting(E_ALL ^ E_DEPRECATED); | ||
/** Define appropriate location for default tmp directory on Pantheon */ | ||
define('WP_TEMP_DIR', $_SERVER['HOME'] .'/tmp'); | ||
|
||
// FS writes aren't permitted in test or live, so we should let WordPress know to disable relevant UI | ||
if (in_array($_ENV['PANTHEON_ENVIRONMENT'], array( 'test', 'live' )) && ! defined('DISALLOW_FILE_MODS')) { | ||
define('DISALLOW_FILE_MODS', true); | ||
} | ||
|
||
/** | ||
* Set WP_ENVIRONMENT_TYPE according to the Pantheon Environment | ||
*/ | ||
if (getenv('WP_ENVIRONMENT_TYPE') === false) { | ||
switch ($_ENV['PANTHEON_ENVIRONMENT']) { | ||
case 'live': | ||
putenv('WP_ENVIRONMENT_TYPE=production'); | ||
break; | ||
case 'test': | ||
putenv('WP_ENVIRONMENT_TYPE=staging'); | ||
break; | ||
default: | ||
putenv('WP_ENVIRONMENT_TYPE=development'); | ||
break; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1ddd8b6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wp-config.php
1ddd8b6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#387 #388 #354 #386 #385 @Playgirlkaybraz11