It’s the one I have in the question
module.exports = ({ env }) => ({
host: env(“HOST”, “0.0.0.0”),
port: env.int(“PORT”, 1337),
admin: {
autoopen: false,
},
});
I’ve also added the nginx file
It’s the one I have in the question
module.exports = ({ env }) => ({
host: env(“HOST”, “0.0.0.0”),
port: env.int(“PORT”, 1337),
admin: {
autoopen: false,
},
});
I’ve also added the nginx file