Skip to content

Commit fcd4233

Browse files
committed
Fix missing word.
1 parent 64f115c commit fcd4233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ When using environment configuration, you may want to "append" environment [serv
9797
<a name="protecting-sensitive-configuration"></a>
9898
## Protecting Sensitive Configuration
9999

100-
For "real" applications, it is advisable to keep all of your sensitive configuration out of your configuration files. Things such database passwords, Stripe API keys, and encryption keys should be kept out of your configuration files whenever possible. So, where should we place them? Thankfully, Laravel provides a very simple solution to protecting these types of configuration items using "dot" files.
100+
For "real" applications, it is advisable to keep all of your sensitive configuration out of your configuration files. Things such as database passwords, Stripe API keys, and encryption keys should be kept out of your configuration files whenever possible. So, where should we place them? Thankfully, Laravel provides a very simple solution to protecting these types of configuration items using "dot" files.
101101

102102
First, [configure your application](/docs/configuration#environment-configuration) to recognize your machine as being in the `local` environment. Next, create a `.env.local.php` file within the root of your project. The root of your project is typically where your `composer.json` file lives. The `.env.local.php` should return an array of key-value pairs, much like a typical Laravel configuration file:
103103

0 commit comments

Comments
 (0)