diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-03-10 16:17:48 -0400 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-03-10 16:17:48 -0400 |
| commit | 93d15cd96972588bbbc29a9398c9d4b050d30411 (patch) | |
| tree | c21e1c10a619fa92131ba5aa75a88f9b515218fd /Jellyfin.Server/StartupOptions.cs | |
| parent | 4b91c9bf66b1205481a973b3f5dea51fc3cd758f (diff) | |
Add configuration flag for Web directory
Diffstat (limited to 'Jellyfin.Server/StartupOptions.cs')
| -rw-r--r-- | Jellyfin.Server/StartupOptions.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Jellyfin.Server/StartupOptions.cs b/Jellyfin.Server/StartupOptions.cs index c8cdb984d..2b01c7bbd 100644 --- a/Jellyfin.Server/StartupOptions.cs +++ b/Jellyfin.Server/StartupOptions.cs @@ -11,6 +11,9 @@ namespace Jellyfin.Server [Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")] public string DataDir { get; set; } + [Option('w', "webdir", Required = false, HelpText = "Path to the Jellyfin web resources.")] + public string WebDir { get; set; } + [Option('C', "cachedir", Required = false, HelpText = "Path to use for caching.")] public string CacheDir { get; set; } |
