aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-07-05 21:51:37 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-07-05 21:51:37 +0200
commite485c5f5d7e062550077b57d12c9520bb3bccad5 (patch)
treee0700a2328ae35142cc45fb9750313e282a72ba2 /src/web
parentAfter the deletion of a bookmark, returns to the list of bookmarks. (diff)
downloadnewspipe-e485c5f5d7e062550077b57d12c9520bb3bccad5.tar.gz
newspipe-e485c5f5d7e062550077b57d12c9520bb3bccad5.tar.bz2
newspipe-e485c5f5d7e062550077b57d12c9520bb3bccad5.zip
Updating certificate with certbot.
Diffstat (limited to 'src/web')
-rw-r--r--src/web/views/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/views/views.py b/src/web/views/views.py
index 203395e2..84da00ab 100644
--- a/src/web/views/views.py
+++ b/src/web/views/views.py
@@ -90,9 +90,9 @@ def about_more():
nb_users=UserController().read().count())
-@current_app.route('/.well-known/acme-challenge/L2Ul7hxmsOxte-ctKBWPZ_bCfP8V55Yt1O_nMvVXrYA')
+@current_app.route('/.well-known/acme-challenge/kEF5xkp04BkNMGN6kkWofAnmmcqM-GdGzbRtbL71Mzc')
def letsencrypt():
"""
To validate the TLS certificate.
"""
- return 'L2Ul7hxmsOxte-ctKBWPZ_bCfP8V55Yt1O_nMvVXrYA.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
+ return 'kEF5xkp04BkNMGN6kkWofAnmmcqM-GdGzbRtbL71Mzc.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
bgstack15