Add subdomain log fix functionality and update templates. Introduce new views and URLs for fixing subdomain logs, enhance log configuration handling in the upgrade script, and update vHost configuration paths for better log management. Include a new menu item for accessing the log fix interface.

This commit is contained in:
Master3395
2025-09-18 22:04:05 +02:00
parent 8ca3ae1b49
commit 6213ff8fdd
10 changed files with 1095 additions and 36 deletions

View File

@@ -207,5 +207,9 @@ urlpatterns = [
path('get_website_resources/', views.get_website_resources, name='get_website_resources'),
# Subdomain Log Fix
path('fixSubdomainLogs', views.fixSubdomainLogs, name='fixSubdomainLogs'),
path('fixSubdomainLogsAction', views.fixSubdomainLogsAction, name='fixSubdomainLogsAction'),
]