aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
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 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'
bgstack15