Skip to content

Commit

Permalink
Create security.json
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 16, 2024
1 parent d2e39bc commit f9d2995
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions config/security.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"encryption": {
"algorithm": "AES-256",
"key": "secret_key_here"
},
"access_control": {
"roles": [
"admin",
"user",
"guest"
],
"permissions": {
"admin": ["read", "write", "execute"],
"user": ["read", "write"],
"guest": ["read"]
}
},
"intrusion_detection": {
"threshold": 5,
"response": "alert_admin"
}
}

0 comments on commit f9d2995

Please sign in to comment.