Skip to content

Commit

Permalink
Remove max file size limit enforcement as it is done in NRP (#13679)
Browse files Browse the repository at this point in the history
  • Loading branch information
tejasshah7 authored Mar 29, 2021
1 parent 0b42be6 commit 336c1e7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"policySettings": {
"state": "Enabled",
"mode": "Prevention",
"maxRequestBodySizeInKb": 128,
"fileUploadLimitInMb": 750,
"maxRequestBodySizeInKb": 2000,
"fileUploadLimitInMb": 4000,
"requestBodyCheck": true
},
"customRules": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"policySettings": {
"state": "Enabled",
"mode": "Detection",
"maxRequestBodySizeInKb": 128,
"fileUploadLimitInMb": 750,
"maxRequestBodySizeInKb": 2000,
"fileUploadLimitInMb": 4000,
"requestBodyCheck": true
},
"managedRules": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@
"policySettings": {
"state": "Enabled",
"mode": "Detection",
"maxRequestBodySizeInKb": 128,
"fileUploadLimitInMb": 750,
"maxRequestBodySizeInKb": 2000,
"fileUploadLimitInMb": 4000,
"requestBodyCheck": true
},
"managedRules": {
Expand Down Expand Up @@ -180,8 +180,8 @@
"policySettings": {
"state": "Enabled",
"mode": "Detection",
"maxRequestBodySizeInKb": 128,
"fileUploadLimitInMb": 750,
"maxRequestBodySizeInKb": 2000,
"fileUploadLimitInMb": 4000,
"requestBodyCheck": true
},
"managedRules": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"policySettings": {
"state": "Enabled",
"mode": "Prevention",
"maxRequestBodySizeInKb": 128,
"fileUploadLimitInMb": 750,
"maxRequestBodySizeInKb": 2000,
"fileUploadLimitInMb": 4000,
"requestBodyCheck": true
},
"customRules": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,6 @@
"maxRequestBodySizeInKb": {
"type": "integer",
"format": "int32",
"maximum": 128,
"exclusiveMaximum": false,
"minimum": 8,
"exclusiveMinimum": false,
"description": "Maximum request body size in Kb for WAF."
Expand Down

0 comments on commit 336c1e7

Please sign in to comment.