Sanitized mirror from private repository - 2026-04-18 11:19:59 UTC
Some checks failed
Documentation / Build Docusaurus (push) Failing after 5m14s
Documentation / Deploy to GitHub Pages (push) Has been skipped

This commit is contained in:
Gitea Mirror Bot
2026-04-18 11:19:59 +00:00
commit fb00a325d1
1418 changed files with 359990 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# 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