소스 검색

modify the maximum content-length to 30MB (#413)

FengZhang 4 년 전
부모
커밋
cbfbebed00
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      rest/config.go

+ 1 - 1
rest/config.go

@@ -32,7 +32,7 @@ type (
 		KeyFile  string `json:",optional"`
 		Verbose  bool   `json:",optional"`
 		MaxConns int    `json:",default=10000"`
-		MaxBytes int64  `json:",default=1048576,range=[0:8388608]"`
+		MaxBytes int64  `json:",default=1048576,range=[0:31457280]"`
 		// milliseconds
 		Timeout      int64         `json:",default=3000"`
 		CpuThreshold int64         `json:",default=900,range=[0:1000]"`