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

Merge pull request #110 from YunoHost-Apps/socket-all-the-things

Connect to database with its socket
This commit is contained in:
tituspijean 2022-02-15 22:16:12 +01:00 committed by GitHub
commit 776612d809
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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