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__)