Skip to content

Commit

Permalink
提升HTTP单次请求大小限制
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroi-sora committed Sep 5, 2024
1 parent 0f1e17b commit b3c92f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UmiOCR-data/py_src/server/web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from . import qrcode_server
from . import doc_server

BaseRequest.MEMFILE_MAX = 10485760 # 设置单次请求大小上限:10MB
BaseRequest.MEMFILE_MAX = 104857600 # 设置单次请求大小上限: 100 MB

UmiWeb = Bottle()
Host = "127.0.0.1" # 由qml设置
Expand Down

0 comments on commit b3c92f2

Please sign in to comment.