This commit is contained in:
Aevann1 2022-04-05 18:52:49 +02:00
parent e71095f563
commit 86cb4b7c0c

View file

@ -88,7 +88,7 @@ mail = Mail(app)
@app.before_request
def before_request():
if request.host != app.config["SERVER_NAME"]: return {"error":"Unauthorized host provided."}, 401
# if request.host != app.config["SERVER_NAME"]: return {"error":"Unauthorized host provided."}, 401
if request.headers.get("CF-Worker"): return {"error":"Cloudflare workers are not allowed to access this website."}, 401
if request.method.lower() != "get" and app.config["READ_ONLY"]: