-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env
More file actions
26 lines (20 loc) · 739 Bytes
/
.env
File metadata and controls
26 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Domain & routing
CADDY_HOST=example.com
# Core runtime
RACK_ENV=production
# Security
# Generate with: openssl rand -hex 32
HTML2RSS_SECRET_KEY=replace-with-64-hex-characters-generated-by-openssl-rand-hex-32
# Authenticated health endpoint token
# Required by the documented Compose stack.
# If you build a custom stack and probe only /api/v1/health/live and /api/v1/health/ready,
# you can omit this value.
HEALTH_CHECK_TOKEN=replace-with-strong-health-token
# Auto source (optional; keep false unless you need automatic feed generation)
AUTO_SOURCE_ENABLED=false
# Observability (optional)
#SENTRY_DSN=
# Performance tuning (override defaults only when needed)
WEB_CONCURRENCY=2
WEB_MAX_THREADS=5
RACK_TIMEOUT_SERVICE_TIMEOUT=15