feat: add HTTP_INTERNAL env variable

This commit is contained in:
Isaac
2024-01-20 20:50:35 +00:00
parent 89b94bc5ab
commit 10eef10216
2 changed files with 3 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ const env = {
ENCRYPTION_KEY: randomBytes(24).toString('hex'),
HTTP_EXTERNAL: 'http://127.0.0.1:8169',
HTTP_HOST: '0.0.0.0',
HTTP_INTERNAL: '',
HTTP_PORT: 8169,
HTTP_TRUST_PROXY: false,
NODE_ENV: 'production', // not bot-specific
@@ -37,4 +38,4 @@ if (!process.env.ENCRYPTION_KEY && !fs.existsSync('./.env')) {
log(short('&r&0&!e WARNING &r &e&lkeep your environment variables safe, don\'t lose your encryption key or you will lose data'));
} else {
log('nothing to do');
}
}