Files
agologum/api/appsettings.json
Blitblank 7229e369ae
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 9s
secretize jwt secret
2026-03-20 20:52:59 -05:00

19 lines
421 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"DefaultConnection": "Host=agologum-net;Port=5432;Database=agologum;Username=agologum;Password=${POSTGRES_PASSWORD}"
},
"AllowedHosts": "*",
"https_port": 443,
"Jwt": {
"Key": "${JWT_SECRET}",
"Issuer": "agologum-api",
"Audience": "agologum-users"
}
}