Skip to content

Commit

Permalink
remove acme python package
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Aug 5, 2024
1 parent 37134ab commit 1d18d57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
16 changes: 8 additions & 8 deletions manageSSL/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
urlpatterns = [
path('', views.loadSSLHome, name='loadSSLHome'),

path('manageSSL/', views.manageSSL, name='manageSSL'),
path('issueSSL/', views.issueSSL, name='issueSSL'),
path('manageSSL', views.manageSSL, name='manageSSL'),
path('issueSSL', views.issueSSL, name='issueSSL'),

path('sslForHostName/', views.sslForHostName, name='sslForHostName'),
path('obtainHostNameSSL/', views.obtainHostNameSSL, name='obtainHostNameSSL'),
path('sslForHostName', views.sslForHostName, name='sslForHostName'),
path('obtainHostNameSSL', views.obtainHostNameSSL, name='obtainHostNameSSL'),

path('sslForMailServer/', views.sslForMailServer, name='sslForMailServer'),
path('obtainMailServerSSL/', views.obtainMailServerSSL, name='obtainMailServerSSL'),
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'),
path('v2ManageSSL', views.v2ManageSSL, name='v2ManageSSL'),
path('v2IssueSSL', views.v2IssueSSL, name='v2IssueSSL'),
]
1 change: 0 additions & 1 deletion requirments.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
acme==2.11.0
bcrypt==4.2.0
beautifulsoup4==4.12.3
boto3==1.34.153
Expand Down

0 comments on commit 1d18d57

Please sign in to comment.