From d13fdd0791e7b8b6a1f5873adc9e0056347f468d Mon Sep 17 00:00:00 2001 From: Yannic Schroeder Date: Mon, 21 Feb 2022 22:38:32 +0100 Subject: [PATCH 1/2] Allow specifying port through PAPERLESS_PORT environment variable --- docs/configuration.rst | 6 ++++++ gunicorn.conf.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index 4813ad932..a91ecfece 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -699,6 +699,12 @@ PAPERLESS_WEBSERVER_WORKERS= Defaults to 2. +PAPERLESS_PORT= + The port number the webserver will listen on. Change the port if it collides + with other services in your setup. + + Defaults to 8000. + USERMAP_UID= The ID of the paperless user in the container. Set this to your actual user ID on the host system, which you can get by executing diff --git a/gunicorn.conf.py b/gunicorn.conf.py index bcc12490e..179346477 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -1,6 +1,6 @@ import os -bind = '0.0.0.0:8000' +bind = f'0.0.0.0:{os.getenv("PAPERLESS_PORT", 8000)}' workers = int(os.getenv("PAPERLESS_WEBSERVER_WORKERS", 2)) worker_class = 'paperless.workers.ConfigurableWorker' timeout = 120 From a1f09bdc4e4f973b647758a851cc0e9f854dfde2 Mon Sep 17 00:00:00 2001 From: Felix Eckhofer Date: Tue, 22 Feb 2022 21:06:28 +0100 Subject: [PATCH 2/2] Clarify description of PAPERLESS_PORT --- docs/configuration.rst | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index a91ecfece..90c5918c8 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -700,8 +700,13 @@ PAPERLESS_WEBSERVER_WORKERS= Defaults to 2. PAPERLESS_PORT= - The port number the webserver will listen on. Change the port if it collides - with other services in your setup. + The port number the webserver will listen on inside the container. There are + special setups where you may need this to avoid collisions with other + services (like using podman with multiple containers in one pod). + + Don't change this when using Docker. To change the port the webserver is + reachable outside of the container, instead refer to the "ports" key in + ``docker-compose.yml``. Defaults to 8000.