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:
parent
4c044a1002
commit
a4a55dff69
1 changed files with 1 additions and 1 deletions
2
conf/env
2
conf/env
|
@ -1,6 +1,6 @@
|
||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
PORT=__PORT__
|
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_AUTH_JWT_SECRET=__JWT_SECRET__
|
||||||
NC_DISABLE_TELE=1
|
NC_DISABLE_TELE=1
|
||||||
NC_PUBLIC_URL=https://__DOMAIN__
|
NC_PUBLIC_URL=https://__DOMAIN__
|
||||||
|
|
Loading…
Reference in a new issue