23 lines
525 B
TOML
23 lines
525 B
TOML
# HMAC File Server - Simplified Production Configuration
|
|
# Only the essential settings you need to configure!
|
|
|
|
[server]
|
|
listen_address = "8080"
|
|
storage_path = "/opt/hmac-file-server/data/uploads"
|
|
|
|
[security]
|
|
secret = "f6g4ldPvQM7O2UTFeBEUUj33VrXypDAcsDt0yqKrLiOr5oQW"
|
|
|
|
[logging]
|
|
level = "info"
|
|
file = "/opt/hmac-file-server/data/logs/hmac-file-server.log"
|
|
|
|
# Network resilience for production environments
|
|
[uploads]
|
|
networkevents = true
|
|
|
|
[network_resilience]
|
|
enabled = true
|
|
quality_monitoring = true
|
|
upload_resilience = true
|