aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
AgeCommit message (Collapse)Author
2020-08-13Merge pull request #3671 from Bond-009/unixsocketAnthony Lavado
Make UNIX socket configurable
2020-08-03Merge remote-tracking branch 'upstream/master' into api-migrationcrobibero
2020-07-23Make UNIX socket configurableBond_009
2020-07-23Update Jellyfin.Server/Program.csDavid
Co-authored-by: Bond-009 <bond.009@outlook.com>
2020-07-20Merge remote-tracking branch 'upstream/master' into api-migration-mergecrobibero
2020-07-16Update Jellyfin.Server/Program.csDavid
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-07-11Add socket supportDavid
2020-07-04Minor fixesBond_009
2020-06-20Move DashboardController to Jellyfin.ApiDavid
2020-06-15Remove code for handling single hyphen argumentsBond_009
and return exit code 1 when argument parsing fails
2020-06-13merge master into api-migrationcrobibero
2020-05-29Enable TreatWarningsAsErrors for Jellyfin.Server.Implementations in Release modeBond_009
2020-05-10Fix mergeMark Monteiro
2020-05-10Merge branch 'master' into simplify-https-configMark Monteiro
2020-05-07Merge pull request #2969 from BaronGreenback/my-featuredkanada
http in development mode crashed -
2020-05-06Made changes to message and exception classBaronGreenback
2020-05-03Merge remote-tracking branch 'upstream/master' into integration-testsMark Monteiro
2020-04-29Remove versioned APIcrobibero
2020-04-26Merge remote-tracking branch 'upstream/master' into simplify-https-configMark Monteiro
Also reverts conflicting changes made in https://github.com/jellyfin/jellyfin/pull/2798
2020-04-26Merge pull request #2798 from JustAMan/fix-livetv-againJoshua M. Boniface
Make localhost LiveTV restreams always use plain HTTP port
2020-04-262969 - re-issed code to address when developer doesn't have certificate ↵BaronGreenback
installed.
2020-04-26Remove unnecessary properties from SystemInfo response objectMark Monteiro
These properties do not provide any useful information to the client. The client would already have to have all this information in order to connect to the endpoint to retrieve it
2020-04-26Merge remote-tracking branch 'upstream/master' into simplify-https-configMark Monteiro
2020-04-25Fix autolaunch & redirect of swagger.crobibero
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