From 9f11c316dce8277b27473c4ac4e1b80ff47a18d5 Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Fri, 24 Oct 2025 06:25:11 +0000 Subject: [PATCH] Initiale Version Erste aktive Version --- compose_proxy-manager.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 compose_proxy-manager.yaml diff --git a/compose_proxy-manager.yaml b/compose_proxy-manager.yaml new file mode 100644 index 0000000..2d107d3 --- /dev/null +++ b/compose_proxy-manager.yaml @@ -0,0 +1,18 @@ +services: + app: + image: 'jc21/nginx-proxy-manager:latest' + container_name: proxy-manager + 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: + # Restriction of filesystem -bizMark + - /home/proxy-manager/data:/data + - /home/proxy-manager/letsencrypt:/etc/letsencrypt + - /home/proxy-manager/custom:/etc/nginx/custom \ No newline at end of file