mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-07 23:09:26 +00:00
3e7f9c492f
git-svn-id: https://svn.fhem.de/fhem/trunk@14548 2b470e98-0d58-463d-a4d8-8e2adae1ed80
33 lines
1017 B
Plaintext
33 lines
1017 B
Plaintext
#
|
|
# database configuration file
|
|
#
|
|
#
|
|
## for MySQL
|
|
################################################################
|
|
#%dbconfig= (
|
|
# connection => "mysql:database=fhem;host=db;port=3306",
|
|
# user => "fhemuser",
|
|
# password => "fhempassword",
|
|
# # optional enable(1) / disable(0) UTF-8 support of MySQL (at least V 4.042 necessary)
|
|
# utf8 => 1,
|
|
#);
|
|
################################################################
|
|
#
|
|
## for PostgreSQL
|
|
################################################################
|
|
#%dbconfig= (
|
|
# connection => "Pg:database=fhem;host=localhost",
|
|
# user => "fhemuser",
|
|
# password => "fhempassword"
|
|
#);
|
|
################################################################
|
|
#
|
|
## for SQLite (username and password stay empty for SQLite)
|
|
################################################################
|
|
#%dbconfig= (
|
|
# connection => "SQLite:dbname=/opt/fhem/fhem.db",
|
|
# user => "",
|
|
# password => ""
|
|
#);
|
|
################################################################
|