aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-12-22 23:53:22 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-12-22 23:53:22 +0100
commit60c86b88fc4d8ba3496c10ad23930555edc635b3 (patch)
tree8b0f0762a287ee0beaf43ff6716640be18896ed2
parentRenew certificate. (diff)
downloadnewspipe-60c86b88fc4d8ba3496c10ad23930555edc635b3.tar.gz
newspipe-60c86b88fc4d8ba3496c10ad23930555edc635b3.tar.bz2
newspipe-60c86b88fc4d8ba3496c10ad23930555edc635b3.zip
Renew certificate (fix).
-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 676d8e6e..1f56a2e5 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/s-hvstQtnglNL0IrR2CwLTdpqTaBxjmTS3U2ZlXQuxw')
+@current_app.route('/.well-known/acme-challenge/xpIvJvCByK6GShwemNIAP1WZuTKKumBDVvgwTSOFgbA')
def letsencrypt():
"""
To validate the TLS certificate.
"""
- return 's-hvstQtnglNL0IrR2CwLTdpqTaBxjmTS3U2ZlXQuxw.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
+ return 'xpIvJvCByK6GShwemNIAP1WZuTKKumBDVvgwTSOFgbA.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
bgstack15