yavsc/src/Yavsc.Blogs/appsettings-blogs.json

34 lines
923 B
JSON
Raw Normal View History

2026-06-19 16:18:39 +01:00
{
"Site": {
"Title": "Yavsc Blogs",
"Description": "A collection of blogs about software development, technology, and programming.",
"Keywords": "software development, technology, programming, coding, blogs",
"Authority": "https://localhost:5001",
2026-07-12 01:17:52 +01:00
"Audience": ["blogs"],
2026-06-19 16:18:39 +01:00
"CorsAllowedOrigins": [
"https://localhost:5005"
]
},
2026-07-08 22:46:46 +01:00
"ConnectionStrings": {
"YavscConnection": "Server=localhost;Port=5432;Database=lame-db-name;Username=lame-user-name;Password=lame-password;"
},
2026-06-19 16:18:39 +01:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
2026-07-08 22:46:46 +01:00
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore.Authentication": "Debug"
2026-06-19 16:18:39 +01:00
}
},
2026-07-08 22:46:46 +01:00
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:5002"
},
"Https": {
"Url": "https://localhost:5003"
}
}
}
2026-06-19 16:18:39 +01:00
}