From 5f4981a8565027551816e6506bf97d3c3b0f02f1 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 2 Jun 2022 11:10:41 +0200 Subject: [PATCH] Update ingress.conf --- transmission/rootfs/etc/nginx/servers/ingress.conf | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/transmission/rootfs/etc/nginx/servers/ingress.conf b/transmission/rootfs/etc/nginx/servers/ingress.conf index daabb7b80..2ac6c9775 100644 --- a/transmission/rootfs/etc/nginx/servers/ingress.conf +++ b/transmission/rootfs/etc/nginx/servers/ingress.conf @@ -4,15 +4,8 @@ server { include /etc/nginx/includes/proxy_params.conf; client_max_body_size 0; - # Code origin : https://github.com/transmission/transmission/issues/899 - - location = / { - return 301 ./web/; # The slash at the end is important. - proxy_set_header X-Forwarded-Proto $scheme; # Avoids mixed content - } - location / { - proxy_pass http://127.0.0.1:9091/transmission/; + proxy_pass http://127.0.0.1:9091/transmission/web/; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;