mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-03-30 19:25:52 +00:00
Milestone 1 of #132. Adds docker-compose.yml with prod + staging services, .env.example for port/data configuration, and Caddyfile.staging for HTTP-only staging proxy. No changes to Dockerfile or server.js — same image, different config. Fixes #132 (partially) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
|
|
}
|