Skip to content

Commit 1d5fc5f

Browse files
fix: minor ingress docs improvement (#5099)
1 parent 0d7538d commit 1d5fc5f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/docs/reference/ingress.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,18 @@ description: Handling incoming HTTP requests
66

77
# HTTP Ingress
88

9-
Verbs annotated with `ftl:ingress` will be exposed via HTTP (`http` is the default ingress type). These endpoints will then be available on one of our default `ingress` ports (local development defaults to `http://localhost:8891`).
10-
11-
The following will be available at `http://localhost:8891/http/users/123/posts?postId=456`.
9+
HTTP ingress is different depending on the language you are using. The following sections describe how to define HTTP ingress in each language.
1210

1311
import Tabs from '@theme/Tabs';
1412
import TabItem from '@theme/TabItem';
1513

1614
<Tabs groupId="languages">
1715
<TabItem value="go" label="Go" default>
1816

17+
Verbs annotated with `ftl:ingress` will be exposed via HTTP (`http` is the default ingress type). These endpoints will then be available on one of our default `ingress` ports (local development defaults to `http://localhost:8891`).
18+
19+
The following will be available at `http://localhost:8891/http/users/123/posts?postId=456`.
20+
1921
```go
2022
type GetRequestPathParams struct {
2123
UserID string `json:"userId"`

0 commit comments

Comments
 (0)