Disable client_max_body_size checks in nginx

By default, nginx has a small (1MB) limit on the size of uploads,
which prevents using horizon interface to upload an image. Disabling
the client_max_body_size check allows for the glance configuration
to govern the maximum size image that should be accepted.

Closes-Bug: #1868503
Change-Id: I0a89e0845d6c7d2805556f87685d280b4e72122a
This commit is contained in:
Billy Olsen 2021-03-30 10:31:17 -07:00
parent 0d7785f233
commit c361d28de1
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ http {
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
client_max_body_size 0;
types_hash_max_size 2048;
include {{ snap }}/usr/conf/mime.types;