Fix newline business with reading DB password

This commit is contained in:
3wc 2020-09-08 01:00:09 +02:00
parent e43662eac9
commit 36136a5fc3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ $wgDBtype = "mysql";
$wgDBserver = "mariadb";
$wgDBname = "mediawiki";
$wgDBuser = "mediawiki";
$wgDBpassword = "{{ secret "db_password" }}";
$wgDBpassword = rtrim(file_get_contents('/run/secrets/db_password'));
# MySQL specific settings
$wgDBprefix = "";