diff options
Diffstat (limited to 'config.php.example')
-rw-r--r-- | config.php.example | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.php.example b/config.php.example index 179e1a16..d8fcd11a 100644 --- a/config.php.example +++ b/config.php.example @@ -10,7 +10,10 @@ define('CONFIG_SESSION_TIMEOUT', 86400 * 3); //define('CONFIG_SQL_HOST', 'localhost'); define('CONFIG_SQL_DSN', 'mysql:dbname=openslx;host=localhost'); define('CONFIG_SQL_USER', 'openslx'); -define('CONFIG_SQL_PASS', 'geheim'); +// This marker %MYSQL_OPENSLX_PASS% is meant for automated patching +// via SSPS (satellite server preparation script) - do not change it +// if you plan to run this script afterwards. +define('CONFIG_SQL_PASS', '%MYSQL_OPENSLX_PASS%'); define('CONFIG_SQL_FORCE_UTF8', false); //define('CONFIG_SQL_DB', 'openslx'); |