File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 5959 "allowedOrigins": "*",
6060 "dappPath": "/api/v0/dapp",
6161 "port": 3030,
62- "userPath": "/api/v0/user"
62+ "userPath": "/api/v0/user",
63+ "requestSizeLimit: '5mb'
6364 },
6465 "signingStore": {
6566 "connection": {
Original file line number Diff line number Diff line change 3535 },
3636 "userPath" : {
3737 "type" : " string"
38+ },
39+ "requestSizeLimit" : {
40+ "type" : " string"
3841 }
3942 },
4043 "additionalProperties" : false
157160 " port" ,
158161 " dappPath" ,
159162 " userPath" ,
160- " allowedOrigins"
163+ " allowedOrigins" ,
164+ " requestSizeLimit"
161165 ],
162166 "properties" : {
163167 "allowedOrigins" : {
197201 "description" : " The path serving the user API. Defaults /api/v0/user" ,
198202 "default" : " /api/v0/user" ,
199203 "type" : " string"
204+ },
205+ "requestSizeLimit" : {
206+ "description" : " The maximum size of incoming requests. Defaults to 1mb." ,
207+ "default" : " 1mb" ,
208+ "type" : " string"
200209 }
201210 },
202211 "additionalProperties" : false
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ config:
1212 dappPath : " /api/v0/dapp"
1313 userPath : " /api/v0/user"
1414 allowedOrigins : " *"
15+ requestSizeLimit : ' 5mb'
1516 store :
1617 connection :
1718 type : sqlite
You can’t perform that action at this time.
0 commit comments