9aced4790c
* feat(api): implement caching and logging in health check endpoint - Added in-memory caching for health check responses to reduce load on Postgres. - Introduced logging for error handling in health check. - Updated response structure to exclude error details from public responses. feat(api): enhance OAuth consent UI and scope handling - Improved consent UI to reflect exact requested scopes and added better user guidance. - Updated scope handling logic to ensure least-privilege access. - Enhanced styling for better user experience and accessibility. chore(docker): improve security and resource management in Docker setup - Updated Docker Compose configuration to enforce read-only file systems and resource limits. - Added health checks and logging options for better observability. - Introduced optional Caddy reverse proxy for TLS termination. fix(migrations): resolve ambiguity in create_company_with_owner function - Dropped orphaned 3-arg overload of create_company_with_owner function. - Recreated canonical 4-arg version with cash account seeding logic. - Ensured proper permissions for function execution in Postgres. * feat: enhance security checks for team membership in company creation
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
# Optional TLS overlay. Adds a Caddy reverse proxy that auto-provisions
|
|
# Let's Encrypt certificates for ${DOMAIN}.
|
|
#
|
|
# Usage:
|
|
# 1. Set DOMAIN=app.example.com in .env (must resolve to this host's public IP)
|
|
# 2. Open ports 80 and 443 to the public internet (LE HTTP-01 challenge needs 80)
|
|
# 3. docker compose -f docker-compose.yml -f docker-compose.caddy.yml up -d
|
|
#
|
|
# Caddy reaches the app over the internal Docker network; the app no longer
|
|
# binds a host port at all.
|
|
services:
|
|
app:
|
|
# Remove the loopback binding from the base file — traffic comes via Caddy.
|
|
ports: !reset null
|
|
|
|
caddy:
|
|
image: caddy:2-alpine@sha256:86deaf5e3d3408a6ccec08fbb79989783dd26e206ae10bcf78a801dc8c9ab794
|
|
depends_on:
|
|
app:
|
|
condition: service_healthy
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./docker/Caddyfile:/etc/caddy/Caddyfile:ro
|
|
- caddy_data:/data
|
|
- caddy_config:/config
|
|
environment:
|
|
- DOMAIN=${DOMAIN:?set DOMAIN in .env to enable TLS}
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
cap_drop:
|
|
- ALL
|
|
# Caddy needs NET_BIND_SERVICE to bind privileged ports 80/443.
|
|
cap_add:
|
|
- NET_BIND_SERVICE
|
|
read_only: true
|
|
tmpfs:
|
|
- /tmp
|
|
mem_limit: 256m
|
|
pids_limit: 50
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "5"
|
|
|
|
volumes:
|
|
caddy_data:
|
|
caddy_config:
|