1
0
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:
Jeremy Stretch
2019-12-06 12:00:51 -05:00
parent 45917f8014
commit 47fefbec07

View File

@ -31,9 +31,9 @@ SECRET_KEY = ''
# Full connection details are required in both sections, even if they are the same.
REDIS = {
'webhooks': {
'HOST': 'redis.example.com',
'PORT': 1234,
'PASSWORD': 'foobar',
'HOST': 'localhost',
'PORT': 6379,
'PASSWORD': '',
'DATABASE': 0,
'DEFAULT_TIMEOUT': 300,
'SSL': False,