add note to webblocker_host variable

This commit is contained in:
ghostersk
2024-05-29 06:27:26 +01:00
committed by GitHub
parent 4120405ba1
commit 4c31c0fa74
+5
View File
@@ -5,6 +5,11 @@ from sqlalchemy.orm import sessionmaker
from datetime import datetime from datetime import datetime
import threading import threading
# Set this URL to URL where the app will be redirected after it receive traffic.
# This URL should have valid certificate ( self signed or Letsencrypt )
# otherwise you will be always warned about bad certificate.
# I used Nginx Proxy Manager to give me this, and added DNS record to Adguard
# As I have this on internal network
webblocker_host="http://webblocker.vm.com" webblocker_host="http://webblocker.vm.com"
app = Flask(__name__) app = Flask(__name__)