17 lines
408 B
Plaintext
17 lines
408 B
Plaintext
|
<?php
|
||
|
|
||
|
# mysql:host=xx;dbname=yyy
|
||
|
# pgsql:host=xx;dbname=yyy
|
||
|
# sqlite:////full/unix/path/to/file.db?mode=0666
|
||
|
#
|
||
|
#$DB_DSN="sqlite:////tmp/cluebringer.sqlite";
|
||
|
#$DB_DSN="pgsql:host=xx;dbname=yyy";
|
||
|
#$DB_DSN="mysql:host=xx;dbname=yyy";
|
||
|
|
||
|
${DOLLAR}DB_DSN="${CLUEBRINGER_DB_BACKEND}:host=${CLUEBRINGER_DB_HOST};dbname=${MYSQL_DATABASE}";
|
||
|
${DOLLAR}DB_USER="${MYSQL_USER}";
|
||
|
${DOLLAR}DB_PASS="${MYSQL_PASSWORD}";
|
||
|
|
||
|
|
||
|
?>
|