mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Default to localhost in example Redis configs (needed for CI to work)
This commit is contained in:
@ -31,9 +31,9 @@ SECRET_KEY = ''
|
|||||||
# Full connection details are required in both sections, even if they are the same.
|
# Full connection details are required in both sections, even if they are the same.
|
||||||
REDIS = {
|
REDIS = {
|
||||||
'webhooks': {
|
'webhooks': {
|
||||||
'HOST': 'redis.example.com',
|
'HOST': 'localhost',
|
||||||
'PORT': 1234,
|
'PORT': 6379,
|
||||||
'PASSWORD': 'foobar',
|
'PASSWORD': '',
|
||||||
'DATABASE': 0,
|
'DATABASE': 0,
|
||||||
'DEFAULT_TIMEOUT': 300,
|
'DEFAULT_TIMEOUT': 300,
|
||||||
'SSL': False,
|
'SSL': False,
|
||||||
|
Reference in New Issue
Block a user