diff options
author | kontrollanten <6680299+kontrollanten@users.noreply.github.com> | 2023-05-10 09:52:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 09:52:50 +0200 |
commit | 674f8ddd415ff4faf100ff35cf2511f84f60fea9 (patch) | |
tree | ab4f8b6b42172f5cdafc87c50b6202ea547429ae /config/default.yaml | |
parent | 5170f492b95dc81b75230312411c5fdb0019eed2 (diff) | |
download | PeerTube-674f8ddd415ff4faf100ff35cf2511f84f60fea9.tar.gz PeerTube-674f8ddd415ff4faf100ff35cf2511f84f60fea9.tar.zst PeerTube-674f8ddd415ff4faf100ff35cf2511f84f60fea9.zip |
feat(server): add redis sentinel support (#5593)
* feat(server): add redis sentinel support
closes #5141
* Styling
---------
Co-authored-by: Chocobozzz <me@florianbigard.com>
Diffstat (limited to 'config/default.yaml')
-rw-r--r-- | config/default.yaml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/default.yaml b/config/default.yaml index 14bb8d060..5d0eab4f5 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -65,8 +65,15 @@ database: | |||
65 | redis: | 65 | redis: |
66 | hostname: 'localhost' | 66 | hostname: 'localhost' |
67 | port: 6379 | 67 | port: 6379 |
68 | auth: null | 68 | auth: null # Used by both standalone and sentinel |
69 | db: 0 | 69 | db: 0 |
70 | sentinel: | ||
71 | enabled: false | ||
72 | enable_tls: false | ||
73 | master_name: '' | ||
74 | sentinels: | ||
75 | - hostname: '' | ||
76 | port: 26379 | ||
70 | 77 | ||
71 | # SMTP server to send emails | 78 | # SMTP server to send emails |
72 | smtp: | 79 | smtp: |