Skip to content

Commit

Permalink
femiwiki: Use general names for DB-related variables
Browse files Browse the repository at this point in the history
  • Loading branch information
lens0021 committed Oct 6, 2024
1 parent 1ca66d1 commit f8bb5d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions development/secrets.php.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

// Database settings
$wgDBserver = getenv( 'NOMAD_UPSTREAM_ADDR_mysql' ) ?: 'mysql';
$wgDBuser = 'DB_USERNAME';
$wgDBpassword = 'DB_PASSWORD';
$wgDBserver = getenv( 'WG_DB_SERVER' ) ?: 'mysql';
$wgDBuser = getenv( 'WG_DB_USER' ) ?: 'DB_USERNAME';
$wgDBpassword = getenv( 'WG_DB_PASSWORD' ) ?: 'DB_PASSWORD';

// SMTP Password
$wgSMTP['password'] = 'SMTP_PASSWORD';
Expand Down

0 comments on commit f8bb5d3

Please sign in to comment.