Files
blog.stevanfreeborn.com/src/Blog/appsettings.example.json
T

14 lines
300 B
JSON
Raw Normal View History

2024-04-08 23:34:32 -05:00
{
2024-04-10 01:28:38 -05:00
"Urls": "https://localhost:4500;http://localhost:4501",
2024-04-11 00:58:22 -05:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
2024-04-10 01:28:38 -05:00
"FilePostServiceOptions": {
"PostsDirectory": "wwwroot/posts"
},
2024-04-14 16:44:41 -05:00
"DetailedErrors": "true"
2024-04-08 23:34:32 -05:00
}