# Application Configuration
# Version: 2.3.0

[server]
host = 0.0.0.0
port = 8080
workers = 4
timeout = 30
debug = true

[database]
engine = postgresql
host = localhost
port = 5432
name = myapp_db
user = admin
password = secret123
pool_size = 5
max_overflow = 10

[cache]
backend = redis
host = localhost
port = 6379
ttl = 300

[logging]
level = DEBUG
file = /var/log/app.log
format = %(asctime)s %(levelname)s %(message)s
max_size = 100MB
