Add root urls to allowed hosts

This commit is contained in:
George Lacey 2021-06-03 10:38:54 +01:00
parent f95b7b1c41
commit 039e851b5c

View File

@ -11,7 +11,7 @@ DEBUG = False
AXES_LOCKOUT_CALLABLE = "borg.views.axes" AXES_LOCKOUT_CALLABLE = "borg.views.axes"
ALLOWED_HOSTS = ['127.0.0.1', 'borg.george.ooo'] ALLOWED_HOSTS = ['127.0.0.1', 'borg.george.ooo', 'george.ooo', 'www.george.ooo']
AUTHENTICATION_BACKENDS = [ AUTHENTICATION_BACKENDS = [
'axes.backends.AxesBackend', 'axes.backends.AxesBackend',