From 42557a12ad2ee9e5a450eb42489d2f7b3d85f7c5 Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Sun, 2 Nov 2025 18:29:57 +0000 Subject: [PATCH] Initiale Version --- compose_proxy-local.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 compose_proxy-local.yaml diff --git a/compose_proxy-local.yaml b/compose_proxy-local.yaml new file mode 100644 index 0000000..d623104 --- /dev/null +++ b/compose_proxy-local.yaml @@ -0,0 +1,18 @@ +services: + app: + image: 'jc21/nginx-proxy-manager:latest' + # local proxy manager for bizMark.local (AD) + container_name: proxy-local + restart: unless-stopped + ports: + - '80:80' # Public HTTP + - '443:443' # Public HTTPS + - '81:81' # Admin Web Port + environment: + DB_SQLITE_FILE: "/data/database.sqlite" + # Uncomment this if IPv6 is not enabled on your host + DISABLE_IPV6: 'true' + volumes: + - /opt/proxy-manager/data:/data + - /opt/proxy-manager/letsencrypt:/etc/letsencrypt + - /opt/proxy-manager/custom:/data/nginx/custom \ No newline at end of file