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

Fix ridiculous localhost resolving to ::1 and being rejected by database

This commit is contained in:
tituspijean 2023-10-18 23:13:46 +02:00
parent 4c044a1002
commit a4a55dff69
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -1,6 +1,6 @@
NODE_ENV=production
PORT=__PORT__
NC_DB=mysql2://localhost:3306?u=__DB_USER__&p=__DB_PWD__&d=__DB_NAME__
NC_DB=mysql2://127.0.0.1:3306?u=__DB_USER__&p=__DB_PWD__&d=__DB_NAME__
NC_AUTH_JWT_SECRET=__JWT_SECRET__
NC_DISABLE_TELE=1
NC_PUBLIC_URL=https://__DOMAIN__