Files
homelab-optimized/hosts/vms/matrix-ubuntu/nginx-proxy-manager.yaml
Gitea Mirror Bot 78b73f37a4
Some checks failed
Documentation / Deploy to GitHub Pages (push) Has been cancelled
Documentation / Build Docusaurus (push) Has been cancelled
Sanitized mirror from private repository - 2026-04-19 08:20:38 UTC
2026-04-19 08:20:38 +00:00

23 lines
626 B
YAML

# Nginx Proxy Manager — matrix-ubuntu VM
# Reverse proxy for all homelab domains
# Ports: 80 (HTTP), 443 (HTTPS), 81 (Admin UI)
# URL: http://192.168.0.154:81 (admin)
#
# Migrated from Calypso 2026-03-20 to enable split-horizon DNS
# (Synology nginx on Calypso occupied ports 80/443)
services:
nginx-proxy-manager:
image: jc21/nginx-proxy-manager:latest
container_name: nginx-proxy-manager
ports:
- "80:80"
- "443:443"
- "81:81"
environment:
TZ: America/Los_Angeles
volumes:
- /opt/npm/data:/data
- /opt/npm/letsencrypt:/etc/letsencrypt
restart: unless-stopped