Caddy配置sts(Strict-Transport-Security)

example.com {
    # 启用 HSTS,有效期 1 年(31536000 秒)
    header {
        Strict-Transport-Security max-age=31536000
    }

    # 其他配置...
    reverse_proxy localhost:8080
}