mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-05 04:46:07 +01:00
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.loadSSLHome, name='loadSSLHome'),
|
|
|
|
path('manageSSL', views.manageSSL, name='manageSSL'),
|
|
path('issueSSL', views.issueSSL, name='issueSSL'),
|
|
path('getSSLDetails', views.getSSLDetails, name='getSSLDetails'),
|
|
|
|
path('sslForHostName', views.sslForHostName, name='sslForHostName'),
|
|
path('obtainHostNameSSL', views.obtainHostNameSSL, name='obtainHostNameSSL'),
|
|
|
|
path('sslForMailServer', views.sslForMailServer, name='sslForMailServer'),
|
|
path('obtainMailServerSSL', views.obtainMailServerSSL, name='obtainMailServerSSL'),
|
|
|
|
# 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'),
|
|
]
|