diff --git a/spotweb/rootfs/etc/nginx/servers/ingress.conf b/spotweb/rootfs/etc/nginx/servers/ingress.conf index f969402b1..97f94f1d1 100644 --- a/spotweb/rootfs/etc/nginx/servers/ingress.conf +++ b/spotweb/rootfs/etc/nginx/servers/ingress.conf @@ -55,4 +55,11 @@ server { deny all; proxy_pass http://127.0.0.1:80; } + + location ~* ^(.*)/api/hassio_ingress/.*(/api/hassio_ingress/.*)$ { + allow 172.30.32.2; + deny all; + redirect $1$2; + proxy_pass http://127.0.0.1:80; + } }