Open dimepues opened 3 months ago
@dimepues
Maybe we need to add error_page 405 =200 $uri;
Safari's XHR progress event may not trigger on very fast networks, so we calculate the exchanged value manually. If the server returns a status before receiving the POST body, we may observe abnormal upload speeds. This issue is due to abnormal server behavior. the server should wait for the POST body before returning a 200 status.
I have not tested but this may help proxy_buffering on;
Or try to handle the /upload like this.
location = /upload {
proxy_pass http://127.0.0.1:3000/dev-null;
}
location = /dev-null {
return 200;
}
Check the browser console's Network tab to see the error message you're getting for the upload. Ensure that the server is responding using HTTP/1.1, which is necessary for establishing parallel connections.
Thanks for the timely reply.
I'll give the nginx rule a shot tomorrow π»
Hi all,
I'm having success on all platforms but iOS and iPad OS when using Wi-Fi π and wanted to share my setup / settings. Enjoy!
Numbers I'm seeing on Wi-Fi 6E 6ghz:
Numbers I'm seeing on Wi-Fi 6 5ghz:
My Setup:
Docker Compose: Nginx
Docker Compose: OpenSpeedTest
OpenSpeedTest Portion of apps.conf
Partially sourced from this configuration: