Files
navidrome-litefs/litefs.yml
sstent 37f0dcb1e7
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
fix: revert to robust manual leadership detection to prevent multiple Navidrome instances
2026-04-27 08:54:55 -07:00

39 lines
698 B
YAML

# LiteFS configuration for Navidrome
fuse:
dir: "/litefs"
data:
dir: "/var/lib/litefs"
# Use Consul for leader election
lease:
type: "consul"
candidate: true
promote: true
advertise-url: "http://${ADVERTISE_IP}:20202"
consul:
url: "${CONSUL_URL}"
key: "litefs/navidrome"
# Internal HTTP API for replication
http:
addr: "0.0.0.0:20202"
# The HTTP Proxy routes traffic to handle write-forwarding
proxy:
addr: ":8080"
target: "localhost:4533"
db: "navidrome.db"
passthrough:
- "*.js"
- "*.css"
- "*.png"
- "*.jpg"
- "*.jpeg"
- "*.gif"
- "*.svg"
# Commands to run only on the primary node.
exec:
- cmd: "/usr/local/bin/entrypoint.sh"