diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-03-07 20:04:56 +0000 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-03-07 21:03:56 +0000 |
commit | 00352f4edadfa536b35112c1d2d2cdf72ffb4cd6 (patch) | |
tree | 54646d0be93bfe0d5667902b99979424972c06ba /data/templates/https/nginx.default.j2 | |
parent | fcd2fc01101960c5e8d4fd04995417d35233b16a (diff) | |
download | vyos-1x-00352f4edadfa536b35112c1d2d2cdf72ffb4cd6.tar.gz vyos-1x-00352f4edadfa536b35112c1d2d2cdf72ffb4cd6.zip |
http-api: T6107: add an option to increase the request body size limit
(cherry picked from commit 4792d39bb84991768404f69ff807e43a9979a79e)
Diffstat (limited to 'data/templates/https/nginx.default.j2')
-rw-r--r-- | data/templates/https/nginx.default.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/data/templates/https/nginx.default.j2 b/data/templates/https/nginx.default.j2 index 5d17df001..4619361e5 100644 --- a/data/templates/https/nginx.default.j2 +++ b/data/templates/https/nginx.default.j2 @@ -21,6 +21,10 @@ server { server_name {{ hostname }}; root /srv/localui; +{% if request_body_size_limit is vyos_defined %} + client_max_body_size {{ request_body_size_limit }}M; +{% endif %} + # SSL configuration {% if certificates.cert_path is vyos_defined and certificates.key_path is vyos_defined %} ssl_certificate {{ certificates.cert_path }}; |