WebSiteLimits

Resource limits for the web site.

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
connection_timeout integer The connection timeout in seconds.
max_bandwidth integer The maximum bandwidth in bytes per second.
max_connections integer The maximum number of concurrent connections.
max_url_segments integer The maximum number of URL segments allowed.
View JSON Schema on GitHub

JSON Schema

microsoft-windows-server-websitelimits-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebSiteLimits",
  "title": "WebSiteLimits",
  "type": "object",
  "description": "Resource limits for the web site.",
  "properties": {
    "connection_timeout": {
      "type": "integer",
      "description": "The connection timeout in seconds.",
      "default": 120,
      "example": 10
    },
    "max_bandwidth": {
      "type": "integer",
      "description": "The maximum bandwidth in bytes per second.",
      "format": "int64",
      "default": 4294967295,
      "example": 10
    },
    "max_connections": {
      "type": "integer",
      "description": "The maximum number of concurrent connections.",
      "format": "int64",
      "default": 4294967295,
      "example": 10
    },
    "max_url_segments": {
      "type": "integer",
      "description": "The maximum number of URL segments allowed.",
      "default": 32,
      "example": "https://www.example.com"
    }
  }
}