From e54b88d48dfa109f50c59012ed4d2cb68af58192 Mon Sep 17 00:00:00 2001 From: "lucas.mathieu" Date: Sun, 28 Dec 2025 05:35:01 +0100 Subject: [PATCH] fix(npmplus): set user to root to bind port 80 --- npmplus/.gitkeep | 0 npmplus/compose.yaml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 npmplus/.gitkeep diff --git a/npmplus/.gitkeep b/npmplus/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/npmplus/compose.yaml b/npmplus/compose.yaml index fa93a1a..bf9cdd6 100644 --- a/npmplus/compose.yaml +++ b/npmplus/compose.yaml @@ -35,8 +35,8 @@ services: # - "ACME_KEY_TYPE=rsa" # which key type to use ecdsa or rsa, default and recommended: ecdsa # - "ACME_SERVER_TLS_VERIFY=false" # enables checking if ACME_SERVER has a valid TLS cert, default and recommended true # - "CUSTOM_OCSP_STAPLING=true" # enables ocsp stapling for custom certs, default false, I recommend enabling this if your custom certs support it - - "PUID=1000" # set user id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root) - - "PGID=1000" # set group id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root), requires non-zero PUID + - "PUID=0" # set user id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root) + - "PGID=0" # set group id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root), requires non-zero PUID # - "NPM_PORT=82" # Port the NPM UI should be bound to, default 81, change this if you want to run multiple npm instances in network mode host # - "GOA_PORT=92" # Port for goaccess, default 91, change this if you want to run multiple npm with goaccess instances in network mode host # - "IPV4_BINDING=127.0.0.1" # IPv4 address to bind, defaults to all