16 lines
446 B
PHP
16 lines
446 B
PHP
|
<?php
|
||
|
|
||
|
// ####################################################################
|
||
|
// ### configuration ##################################################
|
||
|
// ####################################################################
|
||
|
|
||
|
// Supported types: mysql, pgsql. If unset, defaults to mysql
|
||
|
//$dbtype="mysql";
|
||
|
$dbhost="localhost";
|
||
|
$dbname="dmarcts";
|
||
|
$dbuser="dmarcts";
|
||
|
$dbpass="{{ salt['pillar.get']('dmarcts:mariadb_pw', '') }}";
|
||
|
$dbport="3306";
|
||
|
|
||
|
?>
|