Add subdomain to allowed hosts

This commit is contained in:
George Lacey 2021-06-01 14:47:16 +01:00
parent e98f6d178c
commit ba55d7491f

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', 'localhost', 'george.ooo'] ALLOWED_HOSTS = ['127.0.0.1', 'localhost', 'george.ooo', 'borg.george.ooo']
AUTHENTICATION_BACKENDS = [ AUTHENTICATION_BACKENDS = [
'axes.backends.AxesBackend', 'axes.backends.AxesBackend',