diff --git a/qbittorrent/rootfs/etc/nginx/templates/ingress.gtpl b/qbittorrent/rootfs/etc/nginx/templates/ingress.gtpl index 6e57eec4f..d90d99654 100644 --- a/qbittorrent/rootfs/etc/nginx/templates/ingress.gtpl +++ b/qbittorrent/rootfs/etc/nginx/templates/ingress.gtpl @@ -9,8 +9,14 @@ server { } location /api { + proxy_pass {{ .protocol }}://backend; + http2_push_preload on; + client_max_body_size 10M; + } + location /api/ { proxy_pass {{ .protocol }}://backend/; http2_push_preload on; client_max_body_size 10M; } + }