Add authentication and improve server side configuration

This commit is contained in:
Stone_Red
2025-12-23 14:53:44 +01:00
parent 5819432c36
commit 55f26b3a92
14 changed files with 292 additions and 34 deletions
+15 -1
View File
@@ -15,5 +15,19 @@
}
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"Authentication": {
"ApiKeys": [
{
"Key": "dev-api-key-1",
"Description": "Dev client 1",
"Enabled": true
},
{
"Key": "dev-api-key-2",
"Description": "Dev client 2",
"Enabled": false
}
]
}
}