aboutsummaryrefslogtreecommitdiff
path: root/instance/config.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-08-31 16:59:43 -0400
committerB. Stack <bgstack15@gmail.com>2023-08-31 16:59:43 -0400
commit60dcc4fdf3868122c0099025d94b3c5579593473 (patch)
treea5a47452573c0b52b073e5113f23885cd519ea6a /instance/config.py
parentchg: [dependencies] Updated Python dependencies. (diff)
downloadnewspipe-stackrpms-master.tar.gz
newspipe-stackrpms-master.tar.bz2
newspipe-stackrpms-master.zip
stackrpms base plus reverse-proxystackrpms-master
Diffstat (limited to 'instance/config.py')
-rw-r--r--instance/config.py3
1 files changed, 3 insertions, 0 deletions
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"
bgstack15