diff --git a/content/v1/http-trigger.md b/content/v1/http-trigger.md index 2fdaeaf6..1f5fea71 100644 --- a/content/v1/http-trigger.md +++ b/content/v1/http-trigger.md @@ -278,7 +278,7 @@ As well as any headers passed by the client, Spin sets several headers on the re | `spin-raw-component-route` | The component route pattern matched, as written in the component manifest (that is, _excluding_ the base, but including the wildcard indicator if present) | `/users/...` | | `spin-component-route` | The component route pattern matched, _excluding_ any wildcard indicator | `/users` | | `spin-base-path` | The application base path | `/shop` | -| `spin-client-addr` | The IP address and port of the client | `127.0.0.1:53152` | +| `spin-client-addr` | The IP address and port of the client. Some Spin runtimes do not set this header. | `127.0.0.1:53152` | ### Inside HTTP Components diff --git a/content/v2/http-trigger.md b/content/v2/http-trigger.md index 4263a433..c5e463a5 100644 --- a/content/v2/http-trigger.md +++ b/content/v2/http-trigger.md @@ -362,7 +362,7 @@ As well as any headers passed by the client, Spin sets several headers on the re | `spin-raw-component-route` | The component route pattern matched, as written in the component manifest (that is, _excluding_ the base, but including the wildcard indicator if present) | `/users/:userid/cart/...` | | `spin-component-route` | The component route pattern matched, _excluding_ any wildcard indicator | `/users/:userid/cart` | | `spin-base-path` | The application base path | `/shop` | -| `spin-client-addr` | The IP address and port of the client | `127.0.0.1:53152` | +| `spin-client-addr` | The IP address and port of the client. Some Spin runtimes do not set this header. | `127.0.0.1:53152` | ### Inside HTTP Components diff --git a/content/v3/http-trigger.md b/content/v3/http-trigger.md index 0784bf3c..161985d5 100644 --- a/content/v3/http-trigger.md +++ b/content/v3/http-trigger.md @@ -355,7 +355,7 @@ As well as any headers passed by the client, Spin sets several headers on the re | `spin-matched-route` | The part of the trigger route that was matched by the route (including the wildcard indicator if present) | `/users/:userid/cart/...` | | `spin-raw-component-route` | The component route pattern matched, including the wildcard indicator if present | `/users/:userid/cart/...` | | `spin-component-route` | The component route pattern matched, _excluding_ any wildcard indicator | `/users/:userid/cart` | -| `spin-client-addr` | The IP address and port of the client | `127.0.0.1:53152` | +| `spin-client-addr` | The IP address and port of the client. Some Spin runtimes do not set this header. | `127.0.0.1:53152` | ### Inside HTTP Components