rediss://localhost:6379/0

This commit is contained in:
ElevenNotes
2023-12-04 15:16:53 +01:00
parent 6ab10f6b2a
commit 69f14549c6
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ process.once('SIGINT', () => process.exit(0));
const { fork } = require('node:child_process');
const child = fork(`${__dirname}/app.js`, [], {
env:{
LABELS_REDIS_URL:process.env?.LABELS_REDIS_URL || 'redis:://localhost:6379/0',
LABELS_REDIS_URL:process.env?.LABELS_REDIS_URL || 'rediss://localhost:6379/0',
LABELS_INTERVAL:parseInt(process.env?.LABELS_INTERVAL || 300),
LABELS_TIMEOUT:parseInt(process.env?.LABELS_TIMEOUT|| 30),
}