mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-29 16:15:55 +00:00
Use php to read env vars
This commit is contained in:
@@ -4,10 +4,10 @@
|
|||||||
// ### configuration ##################################################
|
// ### configuration ##################################################
|
||||||
// ####################################################################
|
// ####################################################################
|
||||||
|
|
||||||
$dbhost='$$_REPORT_DB_HOST_$$';
|
$dbhost=getenv('REPORT_DB_HOST');
|
||||||
$dbname='$$_REPORT_DB_NAME_$$';
|
$dbname=getenv('REPORT_DB_NAME');
|
||||||
$dbuser='$$_REPORT_DB_USER_$$';
|
$dbuser=getenv('REPORT_DB_USER');
|
||||||
$dbpass='$$_REPORT_DB_PASS_$$';
|
$dbpass=getenv('REPORT_DB_PASS');
|
||||||
$dbport='3306';
|
$dbport='3306';
|
||||||
|
|
||||||
$cssfile="default.css";
|
$cssfile="default.css";
|
||||||
|
|||||||
Reference in New Issue
Block a user