From 40c194524839a372b18ae698e3178a7edb711c3c Mon Sep 17 00:00:00 2001 From: NextTurn <45985406+NextTurn@users.noreply.github.com> Date: Sun, 23 Dec 2018 00:00:00 +0000 Subject: [PATCH] Update http links --- articles/app-service/app-service-web-tutorial-php-mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/app-service/app-service-web-tutorial-php-mysql.md b/articles/app-service/app-service-web-tutorial-php-mysql.md index d5763235e2fce..173ae289cdbe9 100644 --- a/articles/app-service/app-service-web-tutorial-php-mysql.md +++ b/articles/app-service/app-service-web-tutorial-php-mysql.md @@ -358,7 +358,7 @@ The following command configures the app settings `DB_HOST`, `DB_DATABASE`, `DB_ az webapp config appsettings set --name --resource-group myResourceGroup --settings DB_HOST=".mysql.database.azure.com" DB_DATABASE="sampledb" DB_USERNAME="phpappuser@" DB_PASSWORD="MySQLAzure2017" MYSQL_SSL="true" ``` -You can use the PHP [getenv](http://www.php.net/manual/en/function.getenv.php) method to access the settings. the Laravel code uses an [env](https://laravel.com/docs/5.4/helpers#method-env) wrapper over the PHP `getenv`. For example, the MySQL configuration in _config/database.php_ looks like the following code: +You can use the PHP [getenv](https://www.php.net/manual/en/function.getenv.php) method to access the settings. the Laravel code uses an [env](https://laravel.com/docs/5.4/helpers#method-env) wrapper over the PHP `getenv`. For example, the MySQL configuration in _config/database.php_ looks like the following code: ```php 'mysql' => [