فهرست منبع

Default to localhost in example Redis configs (needed for CI to work)

Jeremy Stretch 6 سال پیش
والد
کامیت
47fefbec07
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      netbox/netbox/configuration.example.py

+ 3 - 3
netbox/netbox/configuration.example.py

@@ -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',
-        'PORT': 1234,
-        'PASSWORD': 'foobar',
+        'HOST': 'localhost',
+        'PORT': 6379,
+        'PASSWORD': '',
         'DATABASE': 0,
         'DATABASE': 0,
         'DEFAULT_TIMEOUT': 300,
         'DEFAULT_TIMEOUT': 300,
         'SSL': False,
         'SSL': False,