Remove SECURITY_INSTALLATION.md and implement SSL reconciliation features in manageSSL module. Add new views and URLs for SSL reconciliation, enhance mobile responsiveness in templates, and update SSL utilities for improved functionality. Update upgrade script for scheduled SSL reconciliation tasks.

This commit is contained in:
Master3395
2025-09-18 21:37:48 +02:00
parent bd237dd897
commit 8ca3ae1b49
18 changed files with 2123 additions and 617 deletions

View File

@@ -17,4 +17,10 @@ urlpatterns = [
# v2 functions
path('v2ManageSSL', views.v2ManageSSL, name='v2ManageSSL'),
path('v2IssueSSL', views.v2IssueSSL, name='v2IssueSSL'),
# SSL Reconciliation functions
path('sslReconcile', views.sslReconcile, name='sslReconcile'),
path('reconcileAllSSL', views.reconcileAllSSL, name='reconcileAllSSL'),
path('reconcileDomainSSL', views.reconcileDomainSSL, name='reconcileDomainSSL'),
path('fixACMEContexts', views.fixACMEContexts, name='fixACMEContexts'),
]