mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 23:13:15 +00:00
20 lines
620 B
YAML
20 lines
620 B
YAML
#Here you can define many connexions configurations
|
|
#Please refer to Doctrine documentation abstraction layer for database connection configuration
|
|
#DBAL connection : http://www.doctrine-project.org/docs/dbal/2.1/en/reference/configuration.html
|
|
|
|
#Define a connexion to MYSQL database named main_connexion
|
|
main_connexion:
|
|
host: <HOSTNAME>
|
|
port: <PORT>
|
|
user: <USERNAME>
|
|
password: <PASSWORD>
|
|
dbname: <DATABASE_NAME>
|
|
driver: pdo_mysql
|
|
charset: UTF8
|
|
|
|
#Define a connexion to a SQLite database named test_connexion
|
|
test_connexion:
|
|
driver: pdo_sqlite
|
|
path: '/tmp/db.sqlite'
|
|
charset: UTF8
|