summaryrefslogtreecommitdiff
path: root/deskutils/py-paperless/files
diff options
context:
space:
mode:
authorMichael Gmelin <grembo@FreeBSD.org>2019-08-26 13:30:12 +0000
committerMichael Gmelin <grembo@FreeBSD.org>2019-08-26 13:30:12 +0000
commit3cdc571ab8895b19d628cb2765cdabffe33e46ef (patch)
treec0854e17bd813cc45c002834a05f26a61ac9204c /deskutils/py-paperless/files
parentUpgrade to 0.0.17 (diff)
Add protocol to CORS headers (fails otherwise), add direct dependency on
databases/py-sqlite3 (was implicit through www/py-django21 before). Bump revision.
Diffstat (limited to 'deskutils/py-paperless/files')
-rw-r--r--deskutils/py-paperless/files/patch-paperless.conf.example9
-rw-r--r--deskutils/py-paperless/files/patch-src-paperless-settings.py11
2 files changed, 20 insertions, 0 deletions
diff --git a/deskutils/py-paperless/files/patch-paperless.conf.example b/deskutils/py-paperless/files/patch-paperless.conf.example
index 1c733c3988a4..9bbf8228ae3b 100644
--- a/deskutils/py-paperless/files/patch-paperless.conf.example
+++ b/deskutils/py-paperless/files/patch-paperless.conf.example
@@ -27,3 +27,12 @@
# Override the MEDIA_URL here. Unless you're hosting Paperless off a subdomain
+@@ -98,7 +98,7 @@ PAPERLESS_EMAIL_SECRET=""
+ # servers to the list of allowed hosts that can do CORS calls. By default
+ # Paperless allows calls from localhost:8080, but you'd like to change that,
+ # you can set this value to a comma-separated list.
+-#PAPERLESS_CORS_ALLOWED_HOSTS="localhost:8080,example.com,localhost:8000"
++#PAPERLESS_CORS_ALLOWED_HOSTS="http://localhost:8080,http://example.com,http://localhost:8000"
+
+ # To host paperless under a subpath url like example.com/paperless you set
+ # this value to /paperless. No trailing slash!
diff --git a/deskutils/py-paperless/files/patch-src-paperless-settings.py b/deskutils/py-paperless/files/patch-src-paperless-settings.py
new file mode 100644
index 000000000000..77e7965c0933
--- /dev/null
+++ b/deskutils/py-paperless/files/patch-src-paperless-settings.py
@@ -0,0 +1,11 @@
+--- src/paperless/settings.py.orig 2019-01-27 13:48:05 UTC
++++ src/paperless/settings.py
+@@ -104,7 +104,7 @@ MIDDLEWARE = [
+ ]
+
+ # We allow CORS from localhost:8080
+-CORS_ORIGIN_WHITELIST = tuple(os.getenv("PAPERLESS_CORS_ALLOWED_HOSTS", "localhost:8080").split(","))
++CORS_ORIGIN_WHITELIST = tuple(os.getenv("PAPERLESS_CORS_ALLOWED_HOSTS", "http://localhost:8080").split(","))
+
+ # If auth is disabled, we just use our "bypass" authentication middleware
+ if bool(os.getenv("PAPERLESS_DISABLE_LOGIN", "false").lower() in ("yes", "y", "1", "t", "true")):