This commit is contained in:
Léo Tsai
2022-04-06 11:14:44 +08:00
parent b080d0a61d
commit 9ecc91356d
5 changed files with 126 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '#ma=s-l!2obwj%h-6uu^sbw+4%i2w79%v3^ill62k3&7tjf5dc'
DEBUG = True
DEBUG = False
ALLOWED_HOSTS = ['*']
+1
View File
@@ -18,6 +18,7 @@ urlpatterns = [
re_path(r'^web/$', views.web_view, name='web_view'),
re_path(r'^web/delete$', views.web_delete, name='web_delete'),
re_path(r'^config/$', views.config_view, name='config_view'),
re_path(r'^payloads/$', views.payloads_view, name='payloads_view'),
re_path(r'^rebind/$', views.rebind_view, name='rebind_view'),
re_path(r'^rebind/gen$', views.rebind_gen, name='rebind_gen'),
re_path(r'^as_admin/$', views.as_admin, name='as_admin'),