Skip to content

Commit 4afe58a

Browse files
committed
fix links
1 parent cb76428 commit 4afe58a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

articles/azure-signalr/concept-connection-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Then app server will return the right endpoint url in negotiate response for cli
196196
> [!NOTE]
197197
> For more information about how clients get service url through negotiate, see this [article](signalr-concept-internals.md#client-connections).
198198
199-
Similarly, when server wants to make [server connections](signalr-concept-internals.md#server-connections) or call [REST APIs](https://github.com/Azure/azure-signalr/blob/dev/docs/rest-api.md) to service, SignalR service may also be behind another service like Application Gateway. In that case, you can use `ServerEndpoint` to specify the actual endpoint for server connections and REST APIs:
199+
Similarly, when server wants to make [server connections](signalr-concept-internals.md#azure-signalr-service-internals) or call [REST APIs](https://github.com/Azure/azure-signalr/blob/dev/docs/rest-api.md) to service, SignalR service may also be behind another service like Application Gateway. In that case, you can use `ServerEndpoint` to specify the actual endpoint for server connections and REST APIs:
200200

201201
```
202202
Endpoint=https://<resource_name>.service.signalr.net;AccessKey=<access_key>;ServerEndpoint=https://<url_to_app_gateway>;Version=1.0;

articles/azure-signalr/howto-network-access-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Azure SignalR Service enables you to secure and control the level of access to y
1616

1717
Azure SignalR Service has a public endpoint that is accessible through the internet. You can also create [Private Endpoints for your Azure SignalR Service](howto-private-endpoints.md). Private Endpoint assigns a private IP address from your VNet to the Azure SignalR Service, and secures all traffic between your VNet and the Azure SignalR Service over a private link. The Azure SignalR Service network access control provides access control for both public endpoint and private endpoints.
1818

19-
Optionally, you can choose to allow or deny certain types of requests for public endpoint and each private endpoint. For example, you can block all [Server Connections](signalr-concept-internals.md#server-connections) from public endpoint and make sure they only originate from a specific VNet.
19+
Optionally, you can choose to allow or deny certain types of requests for public endpoint and each private endpoint. For example, you can block all [Server Connections](signalr-concept-internals.md#application-server-connections) from public endpoint and make sure they only originate from a specific VNet.
2020

2121
An application that accesses an Azure SignalR Service when network access control rules are in effect still requires proper authorization for the request.
2222

articles/azure-signalr/signalr-concept-internals.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The differences from self-hosted ASP.NET Core SignalR application are discussed
2222
![Architecture](./media/signalr-concept-internals/arch.png)
2323

2424
## Application server connections
25+
2526
A self-hosted ASP.NET Core SignalR application server listens to and connects clients directly.
2627

2728
With SignalR Service, the application server no longer accepts persistent client connections, instead:
@@ -98,6 +99,6 @@ The Azure SignalR Service acts as a logical transport layer between application
9899
99100
To learn more about Azure SignalR SDKs, see:
100101
101-
- [ASP.NET Core SignalR](https://docs.microsoft.com/aspnet/core/signalr/introduction)
102-
- [ASP.NET SignalR](https://docs.microsoft.com/aspnet/signalr/overview/getting-started/introduction-to-signalr)
102+
- [ASP.NET Core SignalR](/aspnet/core/signalr/introduction)
103+
- [ASP.NET SignalR](/aspnet/signalr/overview/getting-started/introduction-to-signalr)
103104
- [ASP.NET code samples](https://github.com/aspnet/AzureSignalR-samples)

0 commit comments

Comments
 (0)