From 9ae844d9cbd7e8dc30d1a9d2ef8528cca508dfda Mon Sep 17 00:00:00 2001 From: George Lacey Date: Tue, 1 Jun 2021 03:40:07 +0100 Subject: [PATCH] Add george.ooo to allowed hosts --- borgweb/borgweb/production.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgweb/borgweb/production.py b/borgweb/borgweb/production.py index f600ce1..83f826b 100644 --- a/borgweb/borgweb/production.py +++ b/borgweb/borgweb/production.py @@ -11,7 +11,7 @@ DEBUG = False AXES_LOCKOUT_CALLABLE = "borg.views.axes" -ALLOWED_HOSTS = ['127.0.0.1', 'localhost', '192.168.1.69'] +ALLOWED_HOSTS = ['127.0.0.1', 'localhost', 'george.ooo'] AUTHENTICATION_BACKENDS = [ 'axes.backends.AxesBackend',