aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-03-22 21:41:08 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-03-22 21:41:08 +0100
commitfedd604b7a2db3e3f0034f1f8eef9cf03e5b859c (patch)
tree2b97083adfeb930de23f807637c233824725add0 /src/web/views
parentRenew certificate. (diff)
downloadnewspipe-fedd604b7a2db3e3f0034f1f8eef9cf03e5b859c.tar.gz
newspipe-fedd604b7a2db3e3f0034f1f8eef9cf03e5b859c.tar.bz2
newspipe-fedd604b7a2db3e3f0034f1f8eef9cf03e5b859c.zip
Renew certificate.
Diffstat (limited to 'src/web/views')
-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 595b1bc2..e05b07f8 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/EFLghagA_WNheSLn8c3j-7lP7aH5Bd9YcEHhDUDMw3A')
+@current_app.route('/.well-known/acme-challenge/S0n1FW3XDI4_umkKwPT_aQ80xAzeu9aroCd3z7_SFyM')
def letsencrypt():
"""
To validate the TLS certificate.
"""
- return 'EFLghagA_WNheSLn8c3j-7lP7aH5Bd9YcEHhDUDMw3A.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
+ return 'S0n1FW3XDI4_umkKwPT_aQ80xAzeu9aroCd3z7_SFyM.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
bgstack15