From 17cd0ebf0af37c5eeb839bd06d448bc37054e3ad Mon Sep 17 00:00:00 2001 From: Marc Chung Date: Sun, 19 May 2013 19:41:20 -0700 Subject: [PATCH] Document DB_PORT and WP_HOME --- config/public/wp-config.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/public/wp-config.php b/config/public/wp-config.php index 043ef12..5e5c880 100644 --- a/config/public/wp-config.php +++ b/config/public/wp-config.php @@ -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")