From 204b10805e67f125e63a2ece4b184a4634038bea Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 31 Aug 2023 17:18:59 -0400 Subject: add reverse proxy and virtual path This adds the python logic, and prefix variable to assembled links in html and js --- instance/config.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'instance/config.py') diff --git a/instance/config.py b/instance/config.py index 42e624cb..af7617a4 100644 --- a/instance/config.py +++ b/instance/config.py @@ -10,6 +10,9 @@ PORT = 5000 DEBUG = True API_ROOT = "/api/v2.0" +# Optional, and useful if you are using a reverse proxy with this virtual path prefix +#PREFIX = "/newspipe" + CSRF_ENABLED = True SECRET_KEY = "LCx3BchmHRxFzkEv4BqQJyeXRLXenf" SECURITY_PASSWORD_SALT = "L8gTsyrpRQEF8jNWQPyvRfv7U5kJkD" -- cgit