1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ghost_ynh.git synced 2024-09-03 19:16:02 +02:00

Connect to database with its socket

This commit is contained in:
tituspijean 2022-02-04 19:59:57 +01:00
parent 055252de29
commit 8b37851780
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -7,10 +7,10 @@
"database": {
"client": "mysql",
"connection": {
"host" : "127.0.0.1",
"user" : "__DB_USER__",
"password" : "__DB_PWD__",
"database" : "__DB_NAME__"
"socketPath" : "/run/mysqld/mysqld.sock",
"user" : "__DB_USER__",
"password" : "__DB_PWD__",
"database" : "__DB_NAME__"
}
},
"auth": {
@ -26,4 +26,4 @@
},
"transports": ["file", "stdout"]
}
}
}