fix cookie stuff?
This commit is contained in:
@@ -42,6 +42,8 @@ DEBUG = True
|
||||
|
||||
ALLOWED_HOSTS = os.environ.get('ALLOWED_HOSTS', '127.0.0.1,localhost').strip().replace(' ', '').split(',')
|
||||
|
||||
ADMIN_BASE_URL = os.environ.get('ADMIN_BASE_URL', '/admin/')
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
from django.contrib import admin
|
||||
|
||||
"""
|
||||
URL configuration for django_proxmox_mikrotik project.
|
||||
|
||||
@@ -17,9 +18,10 @@ Including another URLconf
|
||||
"""
|
||||
from django.urls import path, include
|
||||
from django.shortcuts import redirect
|
||||
from .settings import ADMIN_BASE_URL
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path(ADMIN_BASE_URL.strip('/') + '/', admin.site.urls),
|
||||
]
|
||||
|
||||
# django_proxmox_mikrotik/urls.py
|
||||
@@ -28,4 +30,4 @@ urlpatterns += [
|
||||
path('frontend/', include('frontend.urls', namespace='frontend')),
|
||||
path('manager/', include('manager.urls', namespace='manager')),
|
||||
path('tasklogger/', include('tasklogger.urls', namespace='tasklogger')),
|
||||
]
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user