aboutsummaryrefslogtreecommitdiff
path: root/instance/sqlite.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-08-30 15:24:17 -0400
committerB. Stack <bgstack15@gmail.com>2023-08-31 10:51:29 -0400
commitc9e7a731db04c11b84bb357ac78405fa2d91a585 (patch)
tree6196fe75e55bfc85275ec71b8954194738665222 /instance/sqlite.py
parentcustomize css (diff)
downloadnewspipe-c9e7a731db04c11b84bb357ac78405fa2d91a585.tar.gz
newspipe-c9e7a731db04c11b84bb357ac78405fa2d91a585.tar.bz2
newspipe-c9e7a731db04c11b84bb357ac78405fa2d91a585.zip
add support for reverse-proxy and virtual pathadd-reverse-proxy
Diffstat (limited to 'instance/sqlite.py')
-rw-r--r--instance/sqlite.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/instance/sqlite.py b/instance/sqlite.py
index abde387a..dcc2bd46 100644
--- a/instance/sqlite.py
+++ b/instance/sqlite.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