security: Update .gitignore to exclude sensitive files
This commit is contained in:
parent
800b5b69ff
commit
c20be7ebbc
1 changed files with 21 additions and 3 deletions
24
.gitignore
vendored
24
.gitignore
vendored
|
|
@ -75,6 +75,27 @@
|
||||||
/wp-content/*
|
/wp-content/*
|
||||||
!/wp-content/plugins/
|
!/wp-content/plugins/
|
||||||
|
|
||||||
|
# Security - Sensitive Files
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
*.env
|
||||||
|
**/.env
|
||||||
|
**/.env.*
|
||||||
|
.auth/
|
||||||
|
**/.auth/
|
||||||
|
**/zoho-config.php
|
||||||
|
**/wp-config.php
|
||||||
|
**/wp-tests-config*.php
|
||||||
|
memory-bank/mcpServers.md
|
||||||
|
**/*config*.php
|
||||||
|
**/*secret*
|
||||||
|
**/*password*
|
||||||
|
**/*credential*
|
||||||
|
**/*.key
|
||||||
|
**/*.pem
|
||||||
|
**/*.p12
|
||||||
|
**/*.pfx
|
||||||
|
|
||||||
# Common ignores
|
# Common ignores
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
@ -82,9 +103,6 @@ Thumbs.db
|
||||||
*.zip
|
*.zip
|
||||||
*.tar
|
*.tar
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
.env
|
|
||||||
.env.local
|
|
||||||
.env.*
|
|
||||||
node_modules/
|
node_modules/
|
||||||
vendor/
|
vendor/
|
||||||
.idea/
|
.idea/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue