mirror of
https://gitlab.com/mobicoop/v3/service/user.git
synced 2026-02-01 22:40:45 +00:00
Merge branch 'redisPassword' into 'main'
add redis password See merge request v3/service/user!23
This commit is contained in:
@@ -16,6 +16,7 @@ POSTGRES_IMAGE=postgres:15.0
|
|||||||
# REDIS
|
# REDIS
|
||||||
REDIS_IMAGE=redis:7.0-alpine
|
REDIS_IMAGE=redis:7.0-alpine
|
||||||
REDIS_HOST=v3-user-redis
|
REDIS_HOST=v3-user-redis
|
||||||
|
REDIS_PASSWORD=redis
|
||||||
REDIS_PORT=6379
|
REDIS_PORT=6379
|
||||||
|
|
||||||
# CACHE
|
# CACHE
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ services:
|
|||||||
v3-user-redis:
|
v3-user-redis:
|
||||||
container_name: v3-user-redis
|
container_name: v3-user-redis
|
||||||
image: ${REDIS_IMAGE}
|
image: ${REDIS_IMAGE}
|
||||||
|
command: redis-server --requirepass ${REDIS_PASSWORD}
|
||||||
ports:
|
ports:
|
||||||
- 6501:6379
|
- 6501:6379
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import { SetConfigurationUseCase } from './domain/usecases/set-configuration.use
|
|||||||
config: {
|
config: {
|
||||||
host: configService.get<string>('REDIS_HOST'),
|
host: configService.get<string>('REDIS_HOST'),
|
||||||
port: configService.get<number>('REDIS_PORT'),
|
port: configService.get<number>('REDIS_PORT'),
|
||||||
|
password: configService.get<string>('REDIS_PASSWORD'),
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ import { UserProfile } from './mappers/user.profile';
|
|||||||
store: await redisStore({
|
store: await redisStore({
|
||||||
host: configService.get<string>('REDIS_HOST'),
|
host: configService.get<string>('REDIS_HOST'),
|
||||||
port: configService.get<number>('REDIS_PORT'),
|
port: configService.get<number>('REDIS_PORT'),
|
||||||
|
password: configService.get<string>('REDIS_PASSWORD'),
|
||||||
ttl: configService.get('CACHE_TTL'),
|
ttl: configService.get('CACHE_TTL'),
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
|||||||
Reference in New Issue
Block a user