16 lines
265 B
TOML
16 lines
265 B
TOML
# Server configuration
|
|
[server]
|
|
address = ":8080"
|
|
read_timeout = "10s"
|
|
write_timeout = "10s"
|
|
idle_timeout = "60s"
|
|
|
|
# Logging configuration
|
|
[logging]
|
|
level = "info"
|
|
format = "json"
|
|
output = "stdout"
|
|
|
|
# Request configuration
|
|
[request]
|
|
max_body_size = 10485760 # 10MB |