mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-22 03:37:43 +00:00
fix ip allow list
This commit is contained in:
parent
8ae426a4de
commit
96131b0bcb
1 changed files with 4 additions and 2 deletions
|
@ -4,7 +4,8 @@ databases:
|
||||||
user: apollo
|
user: apollo
|
||||||
databaseName: apollo
|
databaseName: apollo
|
||||||
postgresMajorVersion: 14
|
postgresMajorVersion: 14
|
||||||
ipAllowList: [] # only allow internal connections
|
ipAllowList:
|
||||||
|
- 10.204.0.0/16
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# Redis
|
# Redis
|
||||||
|
@ -12,7 +13,8 @@ services:
|
||||||
name: srv.redis
|
name: srv.redis
|
||||||
plan: pro
|
plan: pro
|
||||||
maxmemoryPolicy: noeviction
|
maxmemoryPolicy: noeviction
|
||||||
ipAllowList: [] # only allow internal connections
|
ipAllowList:
|
||||||
|
- 10.204.0.0/16
|
||||||
|
|
||||||
# PGBouncer
|
# PGBouncer
|
||||||
- type: pserv
|
- type: pserv
|
||||||
|
|
Loading…
Reference in a new issue