From 070afb977ba5a383f310fa8d39778f7c1c316184 Mon Sep 17 00:00:00 2001 From: Sobral Date: Sat, 1 Apr 2023 15:16:20 -0300 Subject: [PATCH] Improve docs on ENV file As the recommendation is to move the `system` folder, "the root of your ExpressionEngine install", as stated on docs, isn't helpful information. --- docs/advanced-usage/env-support.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced-usage/env-support.md b/docs/advanced-usage/env-support.md index ed3797395..62d6a26aa 100644 --- a/docs/advanced-usage/env-support.md +++ b/docs/advanced-usage/env-support.md @@ -8,7 +8,7 @@ --> # ENV File Support -Config files can also be configured using [PHP Environment variables ($_ENV)](https://www.php.net/manual/en/reserved.variables.environment.php). To utilize this, create a file named `.env.php` in the root of your ExpressionEngine install. Add variables to your `.env.php` file as illustrated below: +Config files can also be configured using [PHP Environment variables ($_ENV)](https://www.php.net/manual/en/reserved.variables.environment.php). To utilize this, create a file named `.env.php` close to the ExpressionEngine system folder. Add variables to your `.env.php` file as illustrated below: ``` DB_HOSTNAME=localhost @@ -129,4 +129,4 @@ $config['database'] = array( $config['show_ee_news'] = 'y'; // EOF -``` \ No newline at end of file +```