Bypass Caddy auth for ingress

This commit is contained in:
Alexandre
2024-05-21 08:23:11 +02:00
committed by GitHub
parent 982f3eae21
commit 7fdd73ce86

View File

@@ -8,22 +8,22 @@
location /log { location /log {
# Proxy pass # Proxy pass
proxy_pass http://localhost:8081; proxy_pass http://localhost:8082;
} }
location /stats { location /stats {
# Proxy pass # Proxy pass
proxy_pass http://localhost:8081; proxy_pass http://localhost:8082;
} }
location /terminal { location /terminal {
# Proxy pass # Proxy pass
proxy_pass http://localhost:8081; proxy_pass http://localhost:8082;
} }
location / { location / {
# Proxy pass # Proxy pass
proxy_pass http://localhost:8081; proxy_pass http://localhost:8082;
# Next three lines allow websockets # Next three lines allow websockets
proxy_http_version 1.1; proxy_http_version 1.1;