Files
agologum/api/appsettings.json
Blitblank a343c2e246
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s
test longer jwt secret
2026-03-20 20:11:58 -05:00

19 lines
462 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": "local_secret_but_longer_this_time_so_it_actually_works",
"Issuer": "agologum-api",
"Audience": "agologum-users"
}
}