mirror of
https://github.com/HeyPuter/puter.git
synced 2026-08-23 22:47:19 +00:00
* Replace nginx with Caddy * updated caddy location * seprate logic for local and with domain caddy setup * updated install * updated install scripts new ps1 script with caddy, and removed instances of nginx * fix Caddy Host routing, restore TLS/SELinux/healthcheck, update docs --------- Co-authored-by: Daniel Salazar <daniel.salazar@puter.com>
19 lines
729 B
Bash
19 lines
729 B
Bash
# Copy this file to `.env`, fill in the secrets, and `docker compose -f
|
|
# docker-compose.full.yml up -d`. None of the defaults below are safe for
|
|
# anything beyond a local laptop test.
|
|
|
|
# ── Public-facing ports (Caddy) ---------------------------------------
|
|
HTTP_PORT=80
|
|
# HTTPS_PORT=443 # uncomment after you enable TLS in caddy/Caddyfile
|
|
|
|
# ── MariaDB ------------------------------------------------------------
|
|
MARIADB_ROOT_PASSWORD=replace-with-strong-password
|
|
MARIADB_DATABASE=puter
|
|
MARIADB_USER=puter
|
|
MARIADB_PASSWORD=replace-with-strong-password
|
|
|
|
# ── S3 (RustFS) --------------------------------------------------------
|
|
S3_ACCESS_KEY=puter
|
|
S3_SECRET_KEY=replace-with-strong-secret
|
|
S3_BUCKET=puter-local
|