From 14f829003dae3cee1e3416e19595c624a39232bb Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 29 Jul 2026 19:35:32 +0200 Subject: [PATCH] fix: List Iroh proxy endpoints used by 0.35 and 1.0, drop stale /relay/probe from earlier versions --- cmdeploy/src/cmdeploy/nginx/nginx.conf.j2 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmdeploy/src/cmdeploy/nginx/nginx.conf.j2 b/cmdeploy/src/cmdeploy/nginx/nginx.conf.j2 index ac92662e..04ab3643 100644 --- a/cmdeploy/src/cmdeploy/nginx/nginx.conf.j2 +++ b/cmdeploy/src/cmdeploy/nginx/nginx.conf.j2 @@ -128,7 +128,10 @@ http { proxy_set_header Connection "upgrade"; } - location /relay/probe { + # Endpoints Iroh uses for net_report probes and that clients + # probe to tell whether this relay works. Both paths are served + # by iroh-relay 0.35 and by the 1.0 line. + location /ping { proxy_pass http://127.0.0.1:3340; proxy_http_version 1.1; }