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 {
# 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;