From c1aa0be9d3f5dc2481234afccc06c655e528c554 Mon Sep 17 00:00:00 2001 From: trinkey Date: Sat, 8 Mar 2025 10:30:29 -0500 Subject: [PATCH] change the settings so i don't have to on my server --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index b73abf7..47eae31 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ import requests from secret import token -REVERSE_PROXY = False # if True: uses X-Real-IP header instead of remote addr +REVERSE_PROXY = True # if True: uses X-Real-IP header instead of remote addr BASE_DIR = Path(__file__).parent TIMEOUT = 15 * 60 MAX_LENGTH = 100_000 @@ -15,9 +15,9 @@ CONTENT_WARNING = "Post can contain any text" PROMO_URL = "\n\nhttps://everyone.trinkey.com/" POST_URL = "https://is.trinkey.com/api/iceshrimp/notes" RUN_CONF = { - "debug": True, + "debug": False, "host": "0.0.0.0", - "port": "8000" + "port": "8765" } app = flask.Flask(__file__)