mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Updating redis pubusb port
This commit is contained in:
parent
0062e5735a
commit
523bd17844
3 changed files with 2 additions and 3 deletions
|
@ -243,7 +243,6 @@
|
|||
]
|
||||
}
|
||||
)' admin
|
||||
when: (inventory_hostname | regex_replace('[0-9]+', '')) == 'db-mongo-analytics'
|
||||
register: auth_result
|
||||
changed_when:
|
||||
- auth_result.rc == 0
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue