diff options
author | Jason Little <realtyem@gmail.com> | 2023-05-26 14:28:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 15:28:39 -0400 |
commit | c835befd10ae0087c3c54a36989ba347313b68af (patch) | |
tree | ed898f1379a6e93a0351aad64023a9b073f7a48a /synapse/config | |
parent | Add `MSC3820opt2` as a known room version (#15678) (diff) | |
download | synapse-c835befd10ae0087c3c54a36989ba347313b68af.tar.xz |
Add Unix socket support for Redis connections (#15644)
Adds a new configuration setting to connect to Redis via a Unix socket instead of over TCP. Disabled by default.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/redis.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/config/redis.py b/synapse/config/redis.py index 636cb450b8..3c4c499e22 100644 --- a/synapse/config/redis.py +++ b/synapse/config/redis.py @@ -33,6 +33,7 @@ class RedisConfig(Config): self.redis_host = redis_config.get("host", "localhost") self.redis_port = redis_config.get("port", 6379) + self.redis_path = redis_config.get("path", None) self.redis_dbid = redis_config.get("dbid", None) self.redis_password = redis_config.get("password") |