You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building a shiny app in python. I'd like to keep this deployment without R if possible and I need to be able to upload large files (30 to 50 MB). In R, I'd simply set the option maxRequestSize to the desired value afaik.
When I upload a file larger than 1 MB, there appears following error message <html> <head><title>413 Request Entity Too Large</title></head> <body> <center><h1>413 Request Entity Too Large</h1></center> <hr><center>nginx/1.18.0 (Ubuntu)</center> </
However, I'm not able to find anything about how to raise this limit in python. I tried setting ws_max_size in run_app to a high value, but this doesn't seem to have any effect. I'd be very thankful for any help!
The text was updated successfully, but these errors were encountered:
The problem has to do with the VM I'm developing on and the limit probably has nothing to do with shiny or python. Not sure how to change this in my setup, but once I dockerized the app and deployed it, it's possible to upload larger files.
I'm building a shiny app in python. I'd like to keep this deployment without R if possible and I need to be able to upload large files (30 to 50 MB). In R, I'd simply set the option maxRequestSize to the desired value afaik.
When I upload a file larger than 1 MB, there appears following error message
<html> <head><title>413 Request Entity Too Large</title></head> <body> <center><h1>413 Request Entity Too Large</h1></center> <hr><center>nginx/1.18.0 (Ubuntu)</center> </
However, I'm not able to find anything about how to raise this limit in python. I tried setting ws_max_size in run_app to a high value, but this doesn't seem to have any effect. I'd be very thankful for any help!
The text was updated successfully, but these errors were encountered: