Files
api.pawol.nu/config/server.js
T
2020-12-18 01:31:44 +01:00

12 lines
269 B
JavaScript

module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url: 'https://api.o-k-i.net',
admin: {
url: '/oki-dashboard',
auth: {
secret: env('ADMIN_JWT_SECRET', '71b106d7b2a4853774b0b27424b77097'),
},
},
});