{
    "ApplicationKey": "Common.Web.Applications.FlowHtmlWeb",
    "MetaServiceUri": "[METASERVICE_URI]",
    "Logging": {
        "LogLevel": {
            "Default": "Information",
            "Microsoft.AspNetCore": "Warning"
        }
    },
    "AllowedHosts": "*",
    "ClientRateLimiting": {
        "EnableEndpointRateLimiting": true,
        "StackBlockedRequests": true,
        "ClientIdHeader": "X-ClientId",
        "HttpStatusCode": 429,
        "EndpointWhitelist": ["get:*"],
        "GeneralRules": [
            {
                "Endpoint": "*",
                "Period": "1s",
                "Limit": 3
            },
            {
                "Endpoint": "*",
                "Period": "1m",
                "Limit": 5
            },
            {
                "Endpoint": "*",
                "Period": "1h",
                "Limit": 200
            },
            {
                "Endpoint": "*",
                "Period": "1d",
                "Limit": 2000
            },
            {
                "Endpoint": "*",
                "Period": "7d",
                "Limit": 10000
            }
        ]
    },
    "IpRateLimiting": {
        "EnableEndpointRateLimiting": true,
        "StackBlockedRequests": true,
        "RealIpHeader": "X-Real-IP",
        "ClientIdHeader": "X-ClientId",
        "HttpStatusCode": 429,
        "EndpointWhitelist": ["get:*"],
        "GeneralRules": [
            {
                "Endpoint": "*",
                "Period": "1s",
                "Limit": 3
            },
            {
                "Endpoint": "*",
                "Period": "1m",
                "Limit": 5
            },
            {
                "Endpoint": "*",
                "Period": "1h",
                "Limit": 200
            },
            {
                "Endpoint": "*",
                "Period": "1d",
                "Limit": 2000
            },
            {
                "Endpoint": "*",
                "Period": "7d",
                "Limit": 10000
            }
        ]
    }
}
