Updating redis pubusb port

This commit is contained in:
Samuel Clay 2024-02-25 14:24:58 -05:00
parent 0062e5735a
commit 523bd17844
3 changed files with 2 additions and 3 deletions

View file

@ -243,7 +243,6 @@
]
}
)' admin
when: (inventory_hostname | regex_replace('[0-9]+', '')) == 'db-mongo-analytics'
register: auth_result
changed_when:
- auth_result.rc == 0

View file

@ -12,7 +12,7 @@ unread_counts = (server) =>
else if ENV_PROD
REDIS_SERVER = 'db-redis-pubsub.service.nyc1.consul'
SECURE = !!process.env.NODE_SSL
REDIS_PORT = if ENV_DOCKER then 6579 else 6379
REDIS_PORT = if ENV_DOCKER then 6579 else 6383
# client = redis.createClient 6379, REDIS_SERVER

View file

@ -20,7 +20,7 @@
REDIS_SERVER = 'db-redis-pubsub.service.nyc1.consul';
}
SECURE = !!process.env.NODE_SSL;
REDIS_PORT = ENV_DOCKER ? 6579 : 6379;
REDIS_PORT = ENV_DOCKER ? 6579 : 6383;
// client = redis.createClient 6379, REDIS_SERVER
// RedisStore = require 'socket.io/lib/stores/redis'