How can I increase the maximum request size bytes?

I’m want to save large json in storage. When I call WriteStorageObjectsAsync I’m getting “request body too large” error.
Using v3.8.0-r1-mc+3b75a01 installed in your cloud.
console.max_message_size_bytes set to 1048576
socket.write_buffer_size_bytes also set to 1048576

@antonsedov The config option you’re looking for is socket.max_request_size_bytes (defaults to 4,096 bytes). Increase that and it should solve your issue. :+1: