Skip to content

Commit 8b07a67

Browse files
committed
updated debug statement
1 parent 32089ea commit 8b07a67

File tree

7 files changed

+5803
-14
lines changed

7 files changed

+5803
-14
lines changed

backend/config/default.json

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
{
22
"database": {
3-
"engine": "mysql",
4-
"host": "db",
5-
"name": "npm",
6-
"user": "npm",
7-
"password": "npm",
8-
"port": 3306
9-
}
3+
"engine": "knex-native",
4+
"knex": {
5+
"client": "sqlite3",
6+
"connection": {
7+
"filename": "/home/pi/projects/github/nginx-proxy-manager/database.sqlite"
8+
},
9+
"pool": {
10+
"min": 0,
11+
"max": 1,
12+
"createTimeoutMillis": 3000,
13+
"acquireTimeoutMillis": 30000,
14+
"idleTimeoutMillis": 30000,
15+
"reapIntervalMillis": 1000,
16+
"createRetryIntervalMillis": 100,
17+
"propagateCreateError": false
18+
},
19+
"migrations": {
20+
"tableName": "migrations",
21+
"stub": "src/backend/lib/migrate_template.js",
22+
"directory": "src/backend/migrations"
23+
}
24+
}
25+
}
1026
}

0 commit comments

Comments
 (0)