Added harder timeouts to http utility. Split owner and query database users.

This commit is contained in:
DebaucheryLibrarian
2021-03-15 04:11:14 +01:00
parent 99cfd3dc3f
commit cb447da7d0
5 changed files with 40 additions and 10 deletions

View File

@@ -1,9 +1,17 @@
module.exports = {
database: {
host: '127.0.0.1',
user: 'user',
password: 'password',
database: 'traxxx',
owner: {
host: '127.0.0.1',
user: 'user',
password: 'password',
database: 'traxxx',
},
query: {
host: '127.0.0.1',
user: 'user',
password: 'password',
database: 'traxxx',
},
},
web: {
host: '0.0.0.0',