strapi.accords-library.com/config/server.js

8 lines
173 B
JavaScript
Raw Permalink Normal View History

2021-12-10 10:06:04 +00:00
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
2022-02-06 12:19:28 +00:00
app: {
keys: env.array("APP_KEYS", ["testKey1", "testKey2"]),
},
2021-12-10 10:06:04 +00:00
});