You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/develop/identity-platform-integration-checklist.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Use the following checklist to ensure that your application is effectively integ
37
37
38
38
## Branding
39
39
40
-
 Adhere to the [Branding guidelines for applications](howto-add-branding-in-azure-ad-apps.md).
40
+
 Adhere to the [Branding guidelines for applications](howto-add-branding-in-apps.md).
41
41
42
42
 Provide a meaningful name and logo for your application. This information appears on your [application’s consent prompt](application-consent-experience.md). Make sure your name and logo are representative of your company/product so that users can make informed decisions. Ensure that you're not violating any trademarks.
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/one-time-passcode.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,9 @@ Email one-time passcode guest users can also use application endpoints that incl
39
39
40
40
You can also give email one-time passcode guest users a direct link to an application or resource by including your tenant information, for example `https://myapps.microsoft.com/signin/Twitter/<application ID?tenantId=<your tenant ID>`.
41
41
42
+
> [!NOTE]
43
+
> Email one-time passcode guest users can sign in to Microsoft Teams directly from the common endpoint without choosing **Sign-in options**. During the sign-in process to Microsoft Teams, the guest user can select a link to send a one-time passcode.
44
+
42
45
## User experience for one-time passcode guest users
43
46
44
47
When the email one-time passcode feature is enabled, newly invited users [who meet certain conditions](#when-does-a-guest-user-get-a-one-time-passcode) will use one-time passcode authentication. Guest users who redeemed an invitation before email one-time passcode was enabled will continue to use their same authentication method.
Copy file name to clipboardExpand all lines: articles/application-gateway/application-gateway-backend-health-troubleshooting.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ To increase the timeout value, follow these steps:
113
113
2. If you can resolve the IP address, there might be something wrong with the DNS configuration in the virtual network.
114
114
3. Check whether the virtual network is configured with a custom DNS server. If it is, check the DNS server about why it can't resolve to the IP address of the specified FQDN.
115
115
4. If you're using Azure default DNS, check with your domain name registrar about whether proper A record or CNAME record mapping has been completed.
116
-
5. If the domain is private or internal, try to resolve it from a VM in the same virtual network. If you can resolve it, restart Application Gateway and check again. To restart Application Gateway, you need to [stop](/powershell/module/azurerm.network/stop-azurermapplicationgateway) and [start](/powershell/module/azurerm.network/start-azurermapplicationgateway) by using the PowerShell commands described in these linked resources.
116
+
5. If the domain is private or internal, try to resolve it from a VM in the same virtual network. If you can resolve it, restart Application Gateway and check again. To restart Application Gateway, you need to [stop](/powershell/module/az.network/stop-azapplicationgateway) and [start](/powershell/module/az.network/start-azapplicationgateway) by using the PowerShell commands described in these linked resources.
117
117
118
118
### Updates to the DNS entries of the backend pool
Copy file name to clipboardExpand all lines: articles/application-gateway/application-gateway-troubleshooting-502.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -216,7 +216,7 @@ As we know enabling HTTPS in the "Backed HTTP Setting" of the rule will make the
216
216
If the backend servers do not have a TLS certificate issued for the CNAME www.contoso.com or *.contoso.com, the request will fail with **Server Error: 502 - Web server received an invalid response while acting as a gateway or proxy server** because the upstream SSL certificate (the certificate installed on the backend servers) will not match the hostname in the host header, and hence the TLS negotiation will fail.
217
217
218
218
219
-
www.contoso.com --> APP GW front end IP --> Listener with a rule that configures "Backend HTTP Settings" to use protocol HTTP --> Backend Pool --> Web server (needs to have a TLS certificate installed for www.contoso.com)
219
+
www.contoso.com --> APP GW front end IP --> Listener with a rule that configures "Backend HTTP Settings" to use protocol HTTPS rather than HTTP --> Backend Pool --> Web server (needs to have a TLS certificate installed for www.contoso.com)
Copy file name to clipboardExpand all lines: articles/application-gateway/http-response-codes.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,14 @@ For information about scenarios where 502 errors occur, and how to troubleshoot
124
124
125
125
Azure application Gateway V2 SKU sent HTTP 504 errors if the backend response time exceeds the time-out value which is configured in the Backend Setting.
126
126
127
+
IIS
128
+
129
+
If your backend server is IIS, see [Default Limits for Web Sites <limits>](/iis/configuration/system.applicationhost/sites/sitedefaults/limits#configuration) to set the timeout value. Refer to the `connectionTimeout` attribute for details. Ensure the connection timeout in IIS matches or does not exceed the timeout set in the backend setting.
130
+
131
+
nginx
132
+
133
+
If the backend server is nginx or nginx ingress controller, and if it has upstream servers, ensure the value of `nginx:proxy_read_timeout` matches or does not exceed with the timeout set in the backend setting.
134
+
127
135
## Next steps
128
136
129
137
If the information in this article doesn't help to resolve the issue, [submit a support ticket](https://azure.microsoft.com/support/options/).
Copy file name to clipboardExpand all lines: articles/azure-maps/map-add-line-layer.md
+21-15Lines changed: 21 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ A line layer can be used to render `LineString` and `MultiLineString` features a
15
15
> [!TIP]
16
16
> Line layers by default will render the coordinates of polygons as well as lines in a data source. To limit the layer such that it only renders LineString features set the `filter` property of the layer to `['==', ['geometry-type'], 'LineString']` or `['any', ['==', ['geometry-type'], 'LineString'], ['==', ['geometry-type'], 'MultiLineString']]` if you want to include MultiLineString features as well.
17
17
18
-
The following code shows how to create a line. Add the line to a data source, then render it with a line layer using the [LineLayer](/javascript/api/azure-maps-control/atlas.layer.linelayer) class.
18
+
The following code shows how to create a line. Add the line to a data source, then render it with a line layer using the [LineLayer] class.
19
19
20
20
```javascript
21
21
//Create a data source and add it to the map.
@@ -41,11 +41,11 @@ The following screenshot shows a sample of the above functionality.
Line layers can be styled using [LineLayerOptions](/javascript/api/azure-maps-control/atlas.linelayeroptions) and [Use data-driven style expressions](data-driven-style-expressions-web-sdk.md).
44
+
Line layers can be styled using [LineLayerOptions] and [Use data-driven style expressions].
45
45
46
46
## Add symbols along a line
47
47
48
-
The following sample demonstrates how to add arrow icons along a line on the map. When using a symbol layer, set the "placement" option to "line". This option will render the symbols along the line and rotate the icons (0 degrees = right).
48
+
The following sample demonstrates how to add arrow icons along a line on the map. When using a symbol layer, set the `placement` option to `line`. This option renders the symbols along the line and rotates the icons (0 degrees = right).
49
49
50
50
```javascript
51
51
functionInitMap()
@@ -121,7 +121,7 @@ function InitMap()
121
121
}
122
122
```
123
123
124
-
This code will create a map that appears as follows:
124
+
This code creates a map that appears as follows:
125
125
126
126
:::image type="content" source="./media/map-add-line-layer/add-symbols-along-a-line.png"alt-text="A screenshot showing a line layer on an Azure Maps map with arrow symbols along the line.":::
127
127
@@ -133,7 +133,7 @@ This code will create a map that appears as follows:
> The Azure Maps web SDK provides several customizable image templates you can use with the symbol layer. For more information, see the [How to use image templates](how-to-use-image-templates-web-sdk.md) document.
136
+
> The Azure Maps web SDK provides several customizable image templates you can use with the symbol layer. For more information, see the [How to use image templates] document.
137
137
138
138
<aname="line-stroke-gradient"></a>
139
139
@@ -168,31 +168,37 @@ The Line layer has several styling options. For a fully functional sample that i
168
168
Learn more about the classes and methods used in this article:
Copy file name to clipboardExpand all lines: articles/azure-maps/map-add-pin.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ The maps image sprite manager loads custom images used by the symbol layer. It s
29
29
30
30
Before you can add a symbol layer to the map, you need to take a couple of steps. First, create a data source, and add it to the map. Create a symbol layer. Then, pass in the data source to the symbol layer, to retrieve the data from the data source. Finally, add data into the data source, so that there's something to be rendered.
31
31
32
-
The code below demonstrates what should be added to the map after it has loaded. This sample renders a single point on the map using a symbol layer.
32
+
The following code demonstrates what should be added to the map after it has loaded. This sample renders a single point on the map using a symbol layer.
33
33
34
34
```javascript
35
35
//Create a data source and add it to the map.
@@ -166,7 +166,7 @@ function InitMap()
166
166
------------------------------------->
167
167
168
168
> [!TIP]
169
-
> The Azure Maps web SDK provides several customizable image templates you can use with the symbol layer. For more information, see the [How to use image templates](how-to-use-image-templates-web-sdk.md) document.
169
+
> The Azure Maps web SDK provides several customizable image templates you can use with the symbol layer. For more information, see the [How to use image templates] document.
170
170
171
171
## Customize a symbol layer
172
172
@@ -210,7 +210,7 @@ See the following articles for more code samples to add to your maps:
0 commit comments