Skip to content

Commit 8784347

Browse files
authored
Update signalr-howto-reverse-proxy-overview.md
1 parent 21f702e commit 8784347

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

articles/azure-signalr/signalr-howto-reverse-proxy-overview.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -47,26 +47,6 @@ There are several general practices to follow when using a reverse proxy in fron
4747

4848
If you have configured multiple SignalR services behind your reverse proxy, make sure `negotiate` request and `connect` request with the same `asrs_request_id` query parameter(meaning they are for the same connection) are routed to the same SignalR service instance.
4949

50-
* When your server goes through your reverse proxy to Azure SignalR, set `ServerEndpoint` as your reverse proxy URL. Your app server will use the URL defined in `ServerEndpoint` to start the server connections or REST API calls. [Check here for more details.](./concept-connection-string.md#client-and-server-endpoints)
51-
52-
There are two ways to configure `ServerEndpoint`:
53-
1. Add a `ServerEndpoint` section to your ConnectionString: `Endpoint=...;AccessKey=...;ServerEndpoint=<reverse-proxy-URL>`
54-
2. Configure `ServerEndpoint` when calling `AddAzureSignalR`:
55-
56-
```cs
57-
services.AddSignalR().AddAzureSignalR(o =>
58-
{
59-
o.Endpoints = new Microsoft.Azure.SignalR.ServiceEndpoint[1]
60-
{
61-
new Microsoft.Azure.SignalR.ServiceEndpoint("<azure-signalr-connection-string>")
62-
{
63-
ServerEndpoint = new Uri("<reverse-proxy-URL>")
64-
}
65-
};
66-
})
67-
```
68-
69-
7050
* When reverse proxy is used, you can further secure your SignalR service by [disabling public network access](./howto-network-access-control.md) and use [private endpoints](howto-private-endpoints.md) to allow only private access from your reverse proxy to your SignalR service through VNet.
7151

7252
## Next steps

0 commit comments

Comments
 (0)