Skip to content

Commit

Permalink
Document DB_PORT and WP_HOME
Browse files Browse the repository at this point in the history
  • Loading branch information
mchung committed May 20, 2013
1 parent 9dfba4b commit 17cd0eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/public/wp-config.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,18 @@
define("DB_HOST", trim($url["host"]));
// define("DB_HOST", "us-cdbr-east-03.cleardb.com");

/** MySQL database port */
// define("DB_PORT", trim($url["port"]));

/** Database Charset to use in creating database tables. */
define("DB_CHARSET", "utf8");

/** Allows both foobar.com and foobar.herokuapp.com to load media assets correctly. */
define("WP_SITEURL", "http://" . $_SERVER["HTTP_HOST"]);

/** WP_HOME is your Blog Address (URL). */
// define('WP_HOME', "http://" . $_SERVER["HTTP_HOST"]);

define("FORCE_SSL_LOGIN", getenv("FORCE_SSL_LOGIN") == "true");
define("FORCE_SSL_ADMIN", getenv("FORCE_SSL_ADMIN") == "true");
if ($_SERVER["HTTP_X_FORWARDED_PROTO"] == "https")
Expand Down

0 comments on commit 17cd0eb

Please sign in to comment.