
* Added base url config * UI side is not working * Working base url more * Attempt to get UI to work with base url * Implemented the ability to set the Base URL for the app * Hooked in Base URL as a managed setting * Ensure we always start with / for base url * Removed default base href from debug builds. Cleaned up an issue with base url migration. * Fixed an issue with our BaseURL migration
24 lines
557 B
JSON
24 lines
557 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Data source=kavita.db"
|
|
},
|
|
"TokenKey": "super secret unguessable key",
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Debug",
|
|
"Microsoft": "Information",
|
|
"Microsoft.Hosting.Lifetime": "Error",
|
|
"Hangfire": "Information",
|
|
"Microsoft.AspNetCore.Hosting.Internal.WebHost": "Information"
|
|
},
|
|
"File": {
|
|
"Path": "logs/kavita.log",
|
|
"Append": "True",
|
|
"FileSizeLimitBytes": 10485760,
|
|
"MaxRollingFiles": 5
|
|
}
|
|
},
|
|
"Port": 5000,
|
|
"BaseUrl": "/"
|
|
|
|
}
|