mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-17 15:53:42 +01:00
Ssl in mediabrowser against new listener.
This commit is contained in:
@@ -44,6 +44,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
||||
|
||||
private readonly bool _supportsNativeWebSocket;
|
||||
|
||||
private string _certificatePath;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the local end points.
|
||||
/// </summary>
|
||||
@@ -217,10 +219,12 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
||||
{
|
||||
if (_supportsNativeWebSocket && NativeWebSocket.IsSupported)
|
||||
{
|
||||
// Certificate location is ignored here. You need to use netsh
|
||||
// to assign the certificate to the proper port.
|
||||
return new HttpListenerServer(_logger, OnRequestReceived);
|
||||
}
|
||||
|
||||
return new WebSocketSharpListener(_logger, OnRequestReceived);
|
||||
return new WebSocketSharpListener(_logger, OnRequestReceived, _certificatePath);
|
||||
}
|
||||
|
||||
private void WebSocketHandler(WebSocketConnectEventArgs args)
|
||||
@@ -425,8 +429,9 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
|
||||
public void StartServer(IEnumerable<string> urlPrefixes)
|
||||
public void StartServer(IEnumerable<string> urlPrefixes, string certificatePath)
|
||||
{
|
||||
_certificatePath = certificatePath;
|
||||
UrlPrefixes = urlPrefixes.ToList();
|
||||
Start(UrlPrefixes.First());
|
||||
}
|
||||
|
||||
@@ -18,11 +18,14 @@ namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
|
||||
|
||||
private readonly ILogger _logger;
|
||||
private readonly Action<string> _endpointListener;
|
||||
private readonly string _certificatePath ;
|
||||
|
||||
public WebSocketSharpListener(ILogger logger, Action<string> endpointListener)
|
||||
public WebSocketSharpListener(ILogger logger, Action<string> endpointListener,
|
||||
string certificatePath)
|
||||
{
|
||||
_logger = logger;
|
||||
_endpointListener = endpointListener;
|
||||
_certificatePath = certificatePath;
|
||||
}
|
||||
|
||||
public Action<Exception, IRequest> ErrorHandler { get; set; }
|
||||
@@ -34,7 +37,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
|
||||
public void Start(IEnumerable<string> urlPrefixes)
|
||||
{
|
||||
if (_listener == null)
|
||||
_listener = new HttpListener(new PatternsLogger(_logger), null);
|
||||
_listener = new HttpListener(new PatternsLogger(_logger), _certificatePath);
|
||||
|
||||
foreach (var prefix in urlPrefixes)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user