1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Add support for configuring use of an SSL connection to Redis.

Requires a build or release of django-rq containing
44f3fdd7cb
This commit is contained in:
Alexander Kinneer
2019-03-15 10:35:03 -05:00
parent dd7249d2ef
commit e544705256
4 changed files with 11 additions and 0 deletions

View File

@@ -283,6 +283,7 @@ REDIS = {
'PASSWORD': '',
'DATABASE': 0,
'DEFAULT_TIMEOUT': 300,
'SSL': False,
}
```
@@ -315,3 +316,9 @@ The TCP port to use when connecting to the Redis server.
Default: None
The password to use when authenticating to the Redis server (optional).
### SSL
Default: False
Use secure sockets layer to encrypt the connections to the Redis server.