- Server operating system version
- Ubuntu 22.04.1 LTS
- Plesk version and microupdate number
- Plesk Obsidian Version 18.0.44 Update #1
Hello, I am running a docker-compose project with python as codebase on a Ubuntu (22) Plesk (18.0.44) server. Now I have a problem that I cannot upload a file with ~1.1GB of size. I changed the value of `Maximum allowed HTTP request body size` under `Domain > my.domain > Hosting & DNS > Apache & nginx Setting` to `2048M` (which then got converted to 2GB). Which worked fine at first, because without that change I instantly got the response that my request is too large (directly from nginx). But after waiting for the file to upload in the end I got basically the same error like the following:
```
Request Entity Too Large
exceeds max_body of 1073741824
(generated by waitress)
```
I don't know where that value comes from. When I check the log of my container I just see the following:
```
[warn] 10#10: *72 a client request body is buffered to a temporary file /var/cache/nginx/client_temp/0000000001, client: *.*.*.*, server: , request: "POST /api/uploads HTTP/1.0", host: "my.domain", referrer: "https://my.domain/upload"
[error] 10#10: *72 readv() failed (104: Connection reset by peer) while reading upstream, client: *.*.*.*, server: , request: "POST /api/uploads HTTP/1.0", upstream: "http://*.*.*.*:6666/uploads", host: "my.domain", referrer: "https://my.domain/upload"
```
Can anyone help me solve this problem?
Thanks for any help in advance
```
Request Entity Too Large
exceeds max_body of 1073741824
(generated by waitress)
```
I don't know where that value comes from. When I check the log of my container I just see the following:
```
[warn] 10#10: *72 a client request body is buffered to a temporary file /var/cache/nginx/client_temp/0000000001, client: *.*.*.*, server: , request: "POST /api/uploads HTTP/1.0", host: "my.domain", referrer: "https://my.domain/upload"
[error] 10#10: *72 readv() failed (104: Connection reset by peer) while reading upstream, client: *.*.*.*, server: , request: "POST /api/uploads HTTP/1.0", upstream: "http://*.*.*.*:6666/uploads", host: "my.domain", referrer: "https://my.domain/upload"
```
Can anyone help me solve this problem?
Thanks for any help in advance