mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:10:45 +00:00
Add CanConnectWithHttps to interface
This commit is contained in:
parent
387fa474aa
commit
410a322fe2
2 changed files with 7 additions and 4 deletions
|
|
@ -1449,10 +1449,7 @@ namespace Emby.Server.Implementations
|
|||
/// <inheritdoc/>
|
||||
public bool ListenWithHttps => Certificate != null && ServerConfigurationManager.Configuration.EnableHttps;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether a client can connect to the server over HTTPS, either directly or via a
|
||||
/// reverse proxy.
|
||||
/// </summary>
|
||||
/// <inheritdoc/>
|
||||
public bool CanConnectWithHttps => ListenWithHttps || ServerConfigurationManager.Configuration.IsBehindProxy;
|
||||
|
||||
public async Task<string> GetLocalApiUrl(CancellationToken cancellationToken)
|
||||
|
|
|
|||
|
|
@ -43,6 +43,12 @@ namespace MediaBrowser.Controller
|
|||
/// </summary>
|
||||
bool ListenWithHttps { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether a client can connect to the server over HTTPS, either directly or via a
|
||||
/// reverse proxy.
|
||||
/// </summary>
|
||||
bool CanConnectWithHttps { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance has update available.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue