You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From my understanding these values can be set by editing XML files in the config folder, e.g. config/system.xml provides values for MediaBrowser.Model.Configuration which take precedence over code's defaults. It also seems this is the only way an admin could set some of these values, as
ServerConfiguration.cs doesn't seem to be using Microsoft.Extensions.Configuration and hence cannot provide JELLYFIN_* environment variables;
the web client doesn't have an entry for every option, e.g. ImageExtractionTimeoutMs.
The documentation could provide more information about these XML files.
Currently, the documentation for server configuration provides directions for editing config options for
MediaBrowser.Controller.Extensions
but contains no pointers on how to edit some Jellyfin's internals likeMediaBrowser.Model.Configuration
options.From my understanding these values can be set by editing XML files in the config folder, e.g.
config/system.xml
provides values forMediaBrowser.Model.Configuration
which take precedence over code's defaults. It also seems this is the only way an admin could set some of these values, asServerConfiguration.cs
doesn't seem to be usingMicrosoft.Extensions.Configuration
and hence cannot provideJELLYFIN_*
environment variables;ImageExtractionTimeoutMs
.The documentation could provide more information about these XML files.
In addition, the Main Configuration Options section doesn't list all the configuration keys in
MediaBrowser.Controller.Extensions.ConfigurationExtensions
I'll try to draft a PR soon :)
The text was updated successfully, but these errors were encountered: