From 7fdd73ce864f8ddcb4ec7b1fbb491a230661c03a Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 21 May 2024 08:23:11 +0200 Subject: [PATCH] Bypass Caddy auth for ingress --- birdnet-pi/rootfs/etc/nginx/servers/ingress.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/birdnet-pi/rootfs/etc/nginx/servers/ingress.conf b/birdnet-pi/rootfs/etc/nginx/servers/ingress.conf index 756633aee..1f7e329af 100644 --- a/birdnet-pi/rootfs/etc/nginx/servers/ingress.conf +++ b/birdnet-pi/rootfs/etc/nginx/servers/ingress.conf @@ -8,22 +8,22 @@ location /log { # Proxy pass - proxy_pass http://localhost:8081; + proxy_pass http://localhost:8082; } location /stats { # Proxy pass - proxy_pass http://localhost:8081; + proxy_pass http://localhost:8082; } location /terminal { # Proxy pass - proxy_pass http://localhost:8081; + proxy_pass http://localhost:8082; } location / { # Proxy pass - proxy_pass http://localhost:8081; + proxy_pass http://localhost:8082; # Next three lines allow websockets proxy_http_version 1.1;