Fix handling of user and group in default config and errors

This commit is contained in:
Tobias Reisinger 2024-03-04 16:28:20 +01:00
parent 79327d2efa
commit 6d31e1e2c9
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
3 changed files with 22 additions and 14 deletions

View file

@ -8,8 +8,8 @@ server {
database = "sqlite://emgauwa-controller.sqlite"
permissions {
user = "emgauwa"
group = "emgauwa"
user = read("env:USER")
group = read("env:USER")
}
logging {

View file

@ -8,8 +8,8 @@ server {
database = "sqlite://emgauwa-core.sqlite"
permissions {
user = "emgauwa"
group = "emgauwa"
user = read("env:USER")
group = read("env:USER")
}
logging {