configure port

This commit is contained in:
Aitor Urrutia
2022-01-15 14:22:27 +01:00
parent 6322d19aeb
commit a69acdbea6

View File

@@ -1,4 +1,4 @@
module.exports = ({ env }) => ({ module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'), host: env("HOST", "0.0.0.0"),
port: env.int('PORT', 1337), port: env.int("PORT", 443),
}); });