Skip to content

Commit 189510d

Browse files
Merge pull request #222712 from Venkateshdodda-MSFT/patch-23
(AzureCXP) fixes MicrosoftDocs/azure-docs#103243
2 parents 242f724 + 33e56a7 commit 189510d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/app-service/tutorial-multi-container-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ To connect the WordPress app to this new MySQL server, you'll configure a few Wo
203203
To make these changes, use the [az webapp config appsettings set](/cli/azure/webapp/config/appsettings#az-webapp-config-appsettings-set) command in Cloud Shell. App settings are case-sensitive and space-separated.
204204

205205
```azurecli-interactive
206-
az webapp config appsettings set --resource-group myResourceGroup --name <app-name> --settings WORDPRESS_DB_HOST="<mysql-server-name>.mysql.database.azure.com" WORDPRESS_DB_USER="adminuser@<mysql-server-name>" WORDPRESS_DB_PASSWORD="My5up3rStr0ngPaSw0rd!" WORDPRESS_DB_NAME="wordpress" MYSQL_SSL_CA="BaltimoreCyberTrustroot.crt.pem"
206+
az webapp config appsettings set --resource-group myResourceGroup --name <app-name> --settings WORDPRESS_DB_HOST="<mysql-server-name>.mysql.database.azure.com" WORDPRESS_DB_USER="adminuser" WORDPRESS_DB_PASSWORD="My5up3rStr0ngPaSw0rd!" WORDPRESS_DB_NAME="wordpress" MYSQL_SSL_CA="BaltimoreCyberTrustroot.crt.pem"
207207
```
208208

209209
When the app setting has been created, Cloud Shell shows information similar to the following example:
@@ -218,7 +218,7 @@ When the app setting has been created, Cloud Shell shows information similar to
218218
{
219219
"name": "WORDPRESS_DB_USER",
220220
"slotSetting": false,
221-
"value": "adminuser@&lt;mysql-server-name&gt;"
221+
"value": "adminuser"
222222
},
223223
{
224224
"name": "WORDPRESS_DB_NAME",
@@ -424,7 +424,7 @@ When the app setting has been created, Cloud Shell shows information similar to
424424
{
425425
"name": "WORDPRESS_DB_USER",
426426
"slotSetting": false,
427-
"value": "adminuser@&lt;mysql-server-name&gt;"
427+
"value": "adminuser"
428428
},
429429
{
430430
"name": "WP_REDIS_HOST",

0 commit comments

Comments
 (0)