diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-01-07 14:35:03 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-01-07 14:35:03 +0100 |
commit | 6d0997b43b1fa07bda777894523bf6bfb4edb837 (patch) | |
tree | a769d948c89860f1fd970b62efc728dfe0d2a430 /src/web/views | |
parent | Renamed crawler name. (diff) | |
download | newspipe-6d0997b43b1fa07bda777894523bf6bfb4edb837.tar.gz newspipe-6d0997b43b1fa07bda777894523bf6bfb4edb837.tar.bz2 newspipe-6d0997b43b1fa07bda777894523bf6bfb4edb837.zip |
New https certificate
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 250d221d..b8d9514f 100644 --- a/src/web/views/views.py +++ b/src/web/views/views.py @@ -78,9 +78,9 @@ def about(): return render_template('about.html', contact=ADMIN_EMAIL) -@current_app.route('/.well-known/acme-challenge/EZyud_oLrReeFMTW3rQiSi-RaZlXCDpwMBrRJ6-vGfU') +@current_app.route('/.well-known/acme-challenge/MmwFRp_wOgBGHcIULSUGVFDjpryEw_uWz7UgD6rE4t4') def letsencrypt(): """ To validate the TLS certificate. """ - return 'EZyud_oLrReeFMTW3rQiSi-RaZlXCDpwMBrRJ6-vGfU.5YrZcJ4uGL2bWUwO6LFWFpwFxIcIL1z8W6hSjdjdLok' + return 'MmwFRp_wOgBGHcIULSUGVFDjpryEw_uWz7UgD6rE4t4.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU' |