aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
AgeCommit message (Collapse)Author
2020-04-23Merge remote-tracking branch 'upstream/master' into integration-testsMark Monteiro
2020-04-23http in development mode crashed -Admin
2020-04-20Expose some methods in Program.cs so they can be used to initialize the ↵Mark Monteiro
application for integration tests
2020-04-08Make sure Jellyfin listens on localhost no matter whatVasily
This is needed by LiveTV
2020-04-06Merge remote-tracking branch 'upstream/master' into simplify-https-configMark Monteiro
2020-04-05Merge remote-tracking branch 'upstream/master' into register-services-correctlyMark Monteiro
2020-04-05Merge pull request #2636 from mark-monteiro/development-httpsBond-009
Use ASP.NET Core HTTPS Development Certificate
2020-04-04Remove unnecessary async and parameter from ApplicationHost initialization ↵Mark Monteiro
method
2020-04-04Register and construct ILocalizationManager correctlyMark Monteiro
2020-04-04Register and construct IImageProcessor, SqliteItemRepository and ↵Mark Monteiro
IImageEncoder correctly
2020-04-04Remove unnecessary fields in ApplicationHostMark Monteiro
2020-04-02Replace EnableHttps and SupportsHttps with ListenWithHttps and ↵Mark Monteiro
CanConnectWithHttps
2020-04-02Merge pull request #2634 from mark-monteiro/enable-http2Vasily
Enable HTTP/2 support
2020-04-01Merge remote-tracking branch 'upstream/master' into development-httpsMark Monteiro
2020-04-01Merge branch 'master' into usingsBond-009
2020-03-25Move check for web client directory to application startup in Program.csMark Monteiro
2020-03-24Update Jellyfin.Server/Program.csBond-009
Co-Authored-By: Mark Monteiro <marknr.monteiro@protonmail.com>
2020-03-24Remove unused usingsBond_009
2020-03-21Bind HTTPS ports when running with development environment flagMark Monteiro
2020-03-21Enable HTTP/2 supportMark Monteiro
2020-03-21Rename command line option to --nowebclient and config setting to HostWebClientMark Monteiro
2020-03-15Do not call UseContentRoot() on the web host builderMark Monteiro
This call has nothing to do with static web content and should not have ever been called with the web content path: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/?view=aspnetcore-3.1&tabs=windows#content-root Since this call is removed, the ContentRoot property is also removed from ApplicationHost as it is no longer needed. Finally, move validation of the static content path to the DashboardService where it is actually used.
2020-03-15Merge command line options into framework configurationMark Monteiro
2020-03-15Construct ApplicationHost with DI framework instead of manuallyMark Monteiro
2020-03-15Make startup config nullable when configuring app configurationMark Monteiro
2020-03-15Use startup configuration to set the default redirect pathMark Monteiro
2020-03-15Rename IsNoWebContent to NoWebContentMark Monteiro
2020-03-11Merge remote-tracking branch 'upstream/master' into ↵Mark Monteiro
support-running-without-web-content
2020-03-11Use config setting to decide if web content should be hostedMark Monteiro
Also fail server startup if web content is expected but missing
2020-03-10Merge branch 'master' into support-injecting-iconfigurationMark Monteiro
2020-03-08Use logging.json instead of logging.user.json for override settingsMark Monteiro
2020-03-06Load user logging config file into application configurationMark Monteiro
2020-03-06Create separate constants for the two logging file namesMark Monteiro
2020-03-05Improve migration logicVasily
2020-03-05Implement EnableThrottling migration for pre-10.5.0 to 10.5.0 or newerVasily
2020-03-03Merge remote-tracking branch 'upstream/master' into ↵Mark Monteiro
support-injecting-iconfiguration
2020-03-03Register Serilog logging services correctlyMark Monteiro
2020-02-28Do not save a reference to the startup config in ApplicationHostMark Monteiro
2020-02-28Register configuration correctly with application using ↵Mark Monteiro
'ConfigureAppConfiguration()' in WebHostBuilder Without this, the correct instance of IConfiguration is not injected into services that rely on it
2020-02-28Use constants for settings keysMark Monteiro
2020-02-26Use IsHostingContent instead of explicitly checking ContentRootMark Monteiro
2020-02-25Remove log message executed before logger is initializedMark Monteiro
2020-02-25Use the swagger API page as the default redirect path if not hosting the ↵Mark Monteiro
jellyfin-web content
2020-02-25Do not set a static content root if the jellyfin-web directory does not ↵Mark Monteiro
exist or is empty
2020-02-12Merge branch 'master' into imagesBond-009
2020-01-31Fix warningsBond_009
2020-01-27Fix spacing logsBond-009
2020-01-21Simplify image processing by removing image enhancersBond_009
2020-01-16Add brackets around thread idBond-009
2020-01-13Add thread ID and source to loggingBond-009