Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 819 Bytes

File metadata and controls

27 lines (22 loc) · 819 Bytes
versionFrom meta.Title meta.Description state verified-against update-links
9.0.0
Umbraco Runtime Settings
Information on the runtime settings section
complete
beta-3
true

Runtime settings

Runtime settings allows you to configure the MaxRequestLength and MaxQueryStringLength for your application. Neither of these settings needs to be configured. If nothing is configured reqests and query string can be any size.

An example of a configuration could look something like:

"Umbraco": {
  "CMS": {
    "Runtime": {
      "MaxQueryStringLength": 90,
      "MaxRequestLength": 2048
    }
  }
}

MaxRequsetLength is specified in kilobytes, so this configuration would limit requests, and therefore uploaded files, to 2 megabytes, and a maximum query string length of 90 characters.