Skip to content

Commit c5abeee

Browse files
committed
fix image
1 parent 693f727 commit c5abeee

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/app-service/tutorial-php-mysql-app.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The creation wizard generated the connectivity variables for you already as [app
143143
1. In the left menu of the App Service page, select **Settings > Environment variables**.
144144
1. Select **AZURE_MYSQL_PASSWORD**.
145145
1. In **Add/Edit application setting**, in the **Value** field, copy the password string for use later.
146-
This app settings let you connect to the MySQL database secured behind private endpoints. However, the secrets are saved directly in the App Service app, which isn't the best. You'll change this.
146+
The app settings you see let you connect to the MySQL database and Redis cache secured behind private endpoints. However, the secrets are saved directly in the App Service app, which isn't the best. You'll change this.
147147
:::column-end:::
148148
:::column:::
149149
:::image type="content" source="./media/tutorial-php-mysql-app/azure-portal-secure-connection-secrets-1.png" alt-text="A screenshot showing how to see the value of an app setting." lightbox="./media/tutorial-php-mysql-app/azure-portal-secure-connection-secrets-1.png":::
@@ -263,7 +263,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
263263
1. In the **App settings** tab, select **Add**.
264264
1. In the **Name** field, enter *CACHE_DRIVER*.
265265
1. In the **Value** field, enter *redis*.
266-
1. Click **Apply**, then **Apply** again, then **Confirm**.
266+
1. Select **Apply**, then **Apply** again, then **Confirm**.
267267
:::column-end:::
268268
:::column:::
269269
:::image type="content" source="./media/tutorial-php-mysql-app/azure-portal-configure-laravel-variables-1.png" alt-text="A screenshot showing the Add/Edit application setting dialog for the CACHE_DRIVER setting." lightbox="./media/tutorial-php-mysql-app/azure-portal-configure-laravel-variables-1.png":::
@@ -278,7 +278,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
278278
- **APP_KEY**: Use *base64:Dsz40HWwbCqnq0oxMsjq7fItmKIeBfCBGORfspaI1Kw=* as the value. It's a [Laravel encryption variable](https://laravel.com/docs/10.x/encryption#configuration).
279279
:::column-end:::
280280
:::column:::
281-
:::image type="content" source="./media/tutorial-php-mysql-app/azure-portal-get-connection-string-4.png" alt-text="A screenshot showing how to save settings in the configuration page." lightbox="./media/tutorial-php-mysql-app/azure-portal-get-connection-string-4.png":::
281+
:::image type="content" source="./media/tutorial-php-mysql-app/azure-portal-configure-laravel-variables-2.png" alt-text="A screenshot showing how to save settings in the configuration page." lightbox="./media/tutorial-php-mysql-app/azure-portal-configure-laravel-variables-2.png":::
282282
:::column-end:::
283283
:::row-end:::
284284

@@ -350,7 +350,7 @@ In this step, you configure GitHub deployment using GitHub Actions. It's just on
350350
1. Replace `DB_USERNAME` (line 52) with `AZURE_MYSQL_USERNAME`.
351351
1. Replace `DB_PASSWORD` (line 53) with `AZURE_MYSQL_PASSWORD`.
352352
1. Replace `DB_PORT` (line 50) with `AZURE_MYSQL_PORT`.
353-
1. scroll to the Redis `cache` section and make the following changes:
353+
1. Scroll to the Redis `cache` section and make the following changes:
354354
1. Replace `REDIS_HOST` (line ) with `AZURE_REDIS_HOST`.
355355
1. Replace `REDIS_PASSWORD` with `AZURE_REDIS_PASSWORD`.
356356
1. Replace `REDIS_PORT` with `AZURE_REDIS_PORT`.
@@ -813,7 +813,7 @@ It means you haven't run database migrations, or database migrations weren't suc
813813
814814
#### How much does this setup cost?
815815
816-
Pricing for the create resources is as follows:
816+
Pricing for the created resources is as follows:
817817
818818
- The App Service plan is created in **Basic** tier and can be scaled up or down. See [App Service pricing](https://azure.microsoft.com/pricing/details/app-service/linux/).
819819
- The MySQL flexible server is created in **B1ms** tier and can be scaled up or down. With an Azure free account, **B1ms** tier is free for 12 months, up to the monthly limits. See [Azure Database for MySQL pricing](https://azure.microsoft.com/pricing/details/mysql/flexible-server/).
@@ -831,7 +831,7 @@ Pricing for the create resources is as follows:
831831
832832
#### How do I change the APP_KEY app setting to a Key Vault reference?
833833
834-
From the portal steps above, you can change `APP_KEY` to a Key Vault reference by running the following Azure CLI commands in the GitHub codespace:
834+
From the portal steps in [4 - Configure Laravel variables](#4---configure-laravel-variables), you can change `APP_KEY` to a Key Vault reference by running the following Azure CLI commands in the GitHub codespace:
835835
836836
```azurecli-interactive
837837
# Change the following variables to match your environment
@@ -897,7 +897,7 @@ See [Set up GitHub Actions deployment from the Deployment Center](deploy-github-
897897
898898
#### What can I do with GitHub Copilot in my codespace?
899899
900-
You might have noticed that the GitHub Copilot chat view was already there for you when you created the codespace. For your convenience, we include the GitHub Copilot chat extension in the container definition (see *.devcontainer/devcontainer.json*). However, you need a [GitHub Copilot account](https://docs.github.com/copilot/using-github-copilot/using-github-copilot-code-suggestions-in-your-editor) (30-day free trial available).
900+
You might notice that the GitHub Copilot chat view was already there for you when you created the codespace. For your convenience, we include the GitHub Copilot chat extension in the container definition (see *.devcontainer/devcontainer.json*). However, you need a [GitHub Copilot account](https://docs.github.com/copilot/using-github-copilot/using-github-copilot-code-suggestions-in-your-editor) (30-day free trial available).
901901
902902
A few tips for you when you talk to GitHub Copilot:
903903

0 commit comments

Comments
 (0)