413 Request Entity Too Large

dextre1480
6 Posts
dextre1480 posted this 23 March 2022
Ask a Question

this show when I try to upload, I installed wordpress with Docker.
413 Request Entity Too Large

this show when I try to upload, I installed wordpress with Docker. **413 Request Entity Too Large**
Vote to pay developers attention to this features or issue.
3 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 23 March 2022

Hi Jenrry,

Thanks for contacting us

Please specify your exact steps so we could reproduce the issue on our end. What exactly you were uploading?

Attach your exported website as the project
...................................................
Sincerely,
Ahmad M.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Jenrry, Thanks for contacting us Please specify your exact steps so we could reproduce the issue on our end. What exactly you were uploading? Attach your exported website as the project ................................................... Sincerely, Ahmad M. Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
dextre1480
6 Posts
dextre1480 posted this 24 March 2022

dont worry I solved, here I share my solution, let's get in the container nginx-proxy, as fallow;

docker exec -it nginx-proxy /bin/bash
apt update
apt install vim -y
vim nginx.conf
agregar la linea;
client_max_body_size 100M;

like this;

http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
client_max_body_size 100M;

log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile        on;
#tcp_nopush     on;

keepalive_timeout  65;

#gzip  on;

include /etc/nginx/conf.d/*.conf;

}
and close and run the next comand;
nginx -s reload

and that's all

dont worry I solved, here I share my solution, let's get in the container nginx-proxy, as fallow; docker exec -it nginx-proxy /bin/bash apt update apt install vim -y vim nginx.conf agregar la linea; client_max_body_size 100M; like this; http { include /etc/nginx/mime.types; default_type application/octet-stream; **client_max_body_size 100M;** log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf; } and close and run the next comand; nginx -s reload and that's all
Support Team
Support Team posted this 24 March 2022

Hi Jenrry,

We are glad that you were able to find a solution.

Thanks for sharing it with our community.
...................................................
Sincerely,
Ahmad M.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Jenrry, We are glad that you were able to find a solution. Thanks for sharing it with our community. ................................................... Sincerely, Ahmad M. Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments