-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Docker Compose limiting action size to 512KB? #124
Comments
Any workaround for this? This issue prevents me from using openwhisk locally... |
@matthewpflueger Have you tried setting that configuration value for NGINX to a higher default and seeing if that helps? |
Is there an update on this issue? I am facing the same and can't resolve it... |
not sure if this helps but, updating nginx to accept larger files causes the controller to throw 500 internal server errors: any help is deeply appreciated.
|
Yes, doing so throws |
User has reported an issue deploying larger actions with error returned:
413 Request Entity Too Large
.I've started devtools using docker compose and can reproduce the issue using the following command.
This is the response body from the CLI command.
Using a file with less than 512KB doesn't have this issue, e.g.
mkfile -n 511k
. Looks like the default body size configuration from nginx in the api gateway service could be set as 512k?https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
If this is correct, can we update it to be the same as the maximum file size (48MB) for actions?
The text was updated successfully, but these errors were encountered: