Skip to content

Commit fe92994

Browse files
authored
Secrets storage and .gitignore
1 parent a633ad7 commit fe92994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/infrastructure_and_maintenance/security/security_checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Reduce your attack surface by exposing only what you must.
151151
`APP_SECRET` needs to be a strong, random, securely stored value.
152152

153153
- Don't use a default value like `ff6dc61a329dc96652bb092ec58981f7` or `ThisTokenIsNotSoSecretChangeIt`.
154-
- The secret must be secured against unwanted access. Don't commit the value to a version control system.
154+
- The secret must be secured against unwanted access. Don't commit the value to a version control system. There are several ways of handling it, like with enviroment variables or files like `.env.local`. Files are considered more secure. If you store the secrets in files, make sure to add those files to `.gitignore` or similar, so they will never be committed to version control systems.
155155
- The secret must be long enough. 32 characters is minimum, longer is better.
156156

157157
!!! tip

0 commit comments

Comments
 (0)