diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-12-22 23:53:22 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-12-22 23:53:22 +0100 |
commit | 60c86b88fc4d8ba3496c10ad23930555edc635b3 (patch) | |
tree | 8b0f0762a287ee0beaf43ff6716640be18896ed2 /src/web/views | |
parent | Renew certificate. (diff) | |
download | newspipe-60c86b88fc4d8ba3496c10ad23930555edc635b3.tar.gz newspipe-60c86b88fc4d8ba3496c10ad23930555edc635b3.tar.bz2 newspipe-60c86b88fc4d8ba3496c10ad23930555edc635b3.zip |
Renew certificate (fix).
Diffstat (limited to 'src/web/views')
-rw-r--r-- | src/web/views/views.py | 4 |
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' |