Skip to content

Commit 9695843

Browse files
authored
Update proxy-calling-support-tutorial.md
1 parent 8c1a4e7 commit 9695843

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/tutorials/proxy-calling-support-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const callClient = new CallClient({
107107
108108
The API reference for the `CallClientOptions` object, and the `networkConfiguration` property within it can be found here - [CallClientOptions](/javascript/api/azure-communication-services/@azure/communication-calling/callclientoptions?view=azure-communication-services-js&preserve-view=true).
109109

110-
### Setting up a proxy middleware in express js
110+
### Setting up a signnaling proxy middleware in express js
111111
You can also create a proxy middleware in your express js server setup to have all the URLs redirected through it, using the [http-proxy-middleware](https://www.npmjs.com/package/http-proxy-middleware) npm package.
112112
The `createProxyMiddleware` function from that package should cover your what you need for a simple redirect proxy setup. Here's an example usage of it with some option settings that the SDK wneed to have all of our URLs working expected:
113113

@@ -144,9 +144,9 @@ app.use('/proxy', myProxyMiddleware);
144144
```
145145

146146
> [!Tip]
147-
If you are having SSL issues, check out the [cors](https://www.npmjs.com/package/cors) package.
147+
> If you are having SSL issues, check out the [cors](https://www.npmjs.com/package/cors) package.
148148
149-
### Setting up a proxy server on Azure
149+
### Setting up a signaling proxy server on Azure
150150
You can create a Linux virtual machine in the Azure portal and deploy an NGINX server on it using this guide - [Quickstart: Create a Linux virtual machine in the Azure portal](/azure/virtual-machines/linux/quick-create-portal?tabs=ubuntu).
151151

152152
Here's an NGINX config that you could make use of for a quick spin up:

0 commit comments

Comments
 (0)