mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-03-29 15:29:53 +00:00
- Caddy reverse proxies :80/:443 → Node :3000 - Mount custom Caddyfile for your domain → auto Let's Encrypt TLS - Caddy certs persisted in /data/caddy volume - Ports: 80 (HTTP), 443 (HTTPS), 1883 (MQTT)
12 lines
286 B
Caddyfile
12 lines
286 B
Caddyfile
# Default Caddyfile — reverse proxy to Node app
|
|
# Override by mounting your own: -v ./Caddyfile:/etc/caddy/Caddyfile
|
|
#
|
|
# For automatic HTTPS, replace :80 with your domain:
|
|
# analyzer.example.com {
|
|
# reverse_proxy localhost:3000
|
|
# }
|
|
|
|
:80 {
|
|
reverse_proxy localhost:3000
|
|
}
|