platform is https by default
authorymh <ymh.work@gmail.com>
Wed, 03 Jul 2024 14:27:13 +0200
changeset 1503 ed7bcbefc941
parent 1502 d9aa594831a8
child 1504 8cc1dda7efc8
platform is https by default
src/ldt/ldt/utils/web_url_management.py
--- a/src/ldt/ldt/utils/web_url_management.py	Thu Apr 23 18:54:01 2020 +0200
+++ b/src/ldt/ldt/utils/web_url_management.py	Wed Jul 03 14:27:13 2024 +0200
@@ -7,5 +7,5 @@
         else:
             domain = "http://%s" % Site.objects.get_current().domain
     else : 
-        domain = "http://%s" % Site.objects.get_current().domain
+        domain = "https://%s" % Site.objects.get_current().domain
     return domain