Add default APP_KEYS to the server config

This commit is contained in:
Christian Capeans 2022-10-20 15:08:38 +02:00
parent 65feb971b8
commit 9166795976

View File

@ -2,6 +2,6 @@ export default ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),
},
});