Skip to content

Commit 73ebb33

Browse files
authored
Merge pull request #314574 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 716c9fc + 4ff722a commit 73ebb33

3 files changed

Lines changed: 23 additions & 7 deletions

File tree

articles/app-service/app-service-key-vault-references.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ After you grant permissions to the user-assigned identity, follow these steps:
9090

9191
This setting applies to all Key Vault references for the app.
9292

93+
> [!TIP]
94+
> If you want to revert your app to use the system-assigned identity, set the value to `SystemAssigned` instead of the Resource ID.
95+
9396
## <a name = "rotation"></a> Understand rotation
9497

9598
If the secret version isn't specified in the reference, the app uses the latest version that exists in the key vault. When newer versions become available, such as with rotation, the app is automatically updated and begins using the latest version within 24 hours.

articles/app-service/reference-app-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ APACHE_RUN_GROUP | RUN sed -i 's!User ${APACHE_RUN_GROUP}!Group www-data!g' /etc
306306
> | `WORDPRESS_ADMIN_EMAIL` | Deployment only | Not applicable | Not applicable | WordPress admin email. |
307307
> | `WORDPRESS_ADMIN_PASSWORD` | Deployment only | Not applicable | Not applicable | WordPress admin password. This setting is only for deployment purposes. Modifying this value has no effect on the WordPress installation. To change the WordPress admin password, see [Reset your password](https://wordpress.org/support/article/resetting-your-password/#to-change-your-password). |
308308
> | `WORDPRESS_ADMIN_USER` | Deployment only | Not applicable | Not applicable|WordPress admin username. |
309-
> | `WORDPRESS_ADMIN_LOCALE_CODE` | Deployment only | Not applicable | Not applicable | Database username used to connect to WordPress. |
309+
> | `WORDPRESS_LOCALE_CODE` | Deployment only | `en_US` | Not applicable | WordPress localization code for site language. |
310310
311311
## Domain and DNS
312312

includes/vpn-gateway-vwan-azure-vpn-client-optional.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,25 @@ To work with VPN client profile configuration files (xml files), use the followi
1818

1919
1. Locate the profile configuration file and open it using the editor of your choice.
2020
1. Using the examples in the following sections, modify the file as necessary, then save your changes.
21-
1. Import the file to configure the Azure VPN client. You can import the file for the Azure VPN Client using these methods:
22-
23-
* **Azure VPN Client interface**: Open the Azure VPN Client and select **+** and then **Import**. Locate the modified .xml file. Configure any additional settings in the Azure VPN Client interface (if necessary), then select **Save**.
24-
25-
* **Command-line prompt**: Place the appropriate downloaded configuration xml file in the *%userprofile%\AppData\Local\Packages\Microsoft.AzureVpn_8wekyb3d8bbwe\LocalState* folder, then run the command that corresponds to the configuration file name. For example, `azurevpn -i azurevpnconfig_aad.xml`. To force the import, use the `-f` switch.
26-
21+
1. Import the file to configure the Azure VPN Client:
22+
- **Windows**
23+
- **Azure VPN Client interface**: Open the Azure VPN Client and select **+** and then **Import**. Locate the modified .xml file. Configure any additional settings in the Azure VPN Client interface (if necessary), then select **Save**.
24+
- **Command-line prompt**: Place the appropriate downloaded configuration xml file in the *%userprofile%\AppData\Local\Packages\Microsoft.AzureVpn_8wekyb3d8bbwe\LocalState* folder, then run the command that corresponds to the configuration file name. For example, `azurevpn -i azurevpnconfig_aad.xml`. To force the import, use the `-f` switch.
25+
- **macOS**
26+
- **Azure VPN Client interface**: Open the Azure VPN Client and select **Import**. Locate the modified .xml file. Configure any additional settings in the Azure VPN Client interface (if necessary), then select **Save**.
27+
- **Command-line prompt**: Modify the following code snippet to distribute your configuration file. Execute it with privileges using `sudo sh ./script.sh`. A restart may be needed if Azure VPN CLient has been started in the user session already.
28+
```bash
29+
#!/bin/sh
30+
31+
# Change this path
32+
sourcePath="UPDATE THIS PATH TO YOUR XML"
33+
profileName="Azure VPN"
34+
35+
# These lines do not need changing
36+
consoleuser=$(ls -l /dev/console | awk '{ print $3 }')
37+
filePath="/Users/$consoleuser/Library/Containers/com.microsoft.AzureVpnMac/Data/Library/Application Support/com.microsoft.AzureVpnMac/$profileName.AzureVpnProfile.xml"
38+
cp $sourcePath $filePath
39+
```
2740
## DNS
2841

2942
### Add DNS suffixes

0 commit comments

Comments
 (0)