aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-11-19 14:29:04 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-11-19 14:29:04 +0100
commitd2f51aa66b50cd058d8b2beafd5da70c84a47d95 (patch)
treef549dfea80a543ed17fcb03b5553a83d3848acbb /src/web/views
parentFixed problem with version of GLIBC_PRIVATE not defined in file libc.so.6 wit... (diff)
parentUpdated Python runtime to 3.6.2 on Heroku. (diff)
downloadnewspipe-d2f51aa66b50cd058d8b2beafd5da70c84a47d95.tar.gz
newspipe-d2f51aa66b50cd058d8b2beafd5da70c84a47d95.tar.bz2
newspipe-d2f51aa66b50cd058d8b2beafd5da70c84a47d95.zip
Merge branch 'master' of github.com:JARR-aggregator/JARR
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 203395e2..4110371c 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/qqFThbYrxfr-dpbUNUnl7wwm7hD3p7dYA_xP6-u7qw8')
def letsencrypt():
"""
To validate the TLS certificate.
"""
- return 'L2Ul7hxmsOxte-ctKBWPZ_bCfP8V55Yt1O_nMvVXrYA.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
+ return 'qqFThbYrxfr-dpbUNUnl7wwm7hD3p7dYA_xP6-u7qw8.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
bgstack15