
Ich habe einen 413-Fehler, wenn ich ein Bild auf Microstack erstellen möchte. Vielen Dank im Voraus
Bonjour,
Es ist ein Fehler 413 aufgetreten, wenn ich ein Image auf dem installierten Microstack erstellen wollte.
Vielen Dank für Ihre Hilfe
Frédéric
<html> <head><title>413 Request Entity Too Large</title></head> <body bgcolor="white"> <center><h1>413 Request Entity Too Large</h1></center> <hr><center>nginx/1.13.0</center> </body> </html>
Antwort1
ImDokumentationSie werden feststellen, dass Nginx die Upload-Dateigröße von Serverblöcken begrenzt.
Syntax: client_max_body_size size;
Default:
client_max_body_size 1m;
Context: http, server, location
Sets the maximum allowed size of the client request body, specified in the “Content-Length” request header field. If the size in a request exceeds the configured value, the 413 (Request Entity Too Large) error is returned to the client. Please be aware that browsers cannot correctly display this error. Setting size to 0 disables checking of client request body size.
Bearbeiten Sie die Datei sudo vim /etc/nginx/nginx.conf
oder
sudo vim /var/snap/microstack/common/etc/nginx/snap/nginx.conf
:
Stellen Sie die HTTP-Client_max_body_size auf eine Größe ein, die größer ist als das gewünschte ISO.
http {
...
client_max_body_size 2000M;
}
Starten Sie es jetzt neu, indem
sudo systemctl reload nginx
Sie odersudo snap restart microstack