commit
46c8a6c1e8
|
@ -44,7 +44,11 @@ namespace Jellyfin.Server.Middleware
|
||||||
var localPath = httpContext.Request.Path.ToString();
|
var localPath = httpContext.Request.Path.ToString();
|
||||||
var baseUrlPrefix = serverConfigurationManager.Configuration.BaseUrl;
|
var baseUrlPrefix = serverConfigurationManager.Configuration.BaseUrl;
|
||||||
|
|
||||||
if (!localPath.StartsWith(baseUrlPrefix, StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(localPath, baseUrlPrefix + "/", StringComparison.OrdinalIgnoreCase)
|
||||||
|
|| string.Equals(localPath, baseUrlPrefix, StringComparison.OrdinalIgnoreCase)
|
||||||
|
|| string.Equals(localPath, "/", StringComparison.OrdinalIgnoreCase)
|
||||||
|
|| string.IsNullOrEmpty(localPath)
|
||||||
|
|| !localPath.StartsWith(baseUrlPrefix, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
// Always redirect back to the default path if the base prefix is invalid or missing
|
// Always redirect back to the default path if the base prefix is invalid or missing
|
||||||
_logger.LogDebug("Normalizing an URL at {LocalPath}", localPath);
|
_logger.LogDebug("Normalizing an URL at {LocalPath}", localPath);
|
||||||
|
|
|
@ -93,11 +93,7 @@ namespace Jellyfin.Server
|
||||||
IWebHostEnvironment env,
|
IWebHostEnvironment env,
|
||||||
IConfiguration appConfig)
|
IConfiguration appConfig)
|
||||||
{
|
{
|
||||||
// Only add base url redirection if a base url is set.
|
app.UseBaseUrlRedirection();
|
||||||
if (!string.IsNullOrEmpty(_serverConfigurationManager.Configuration.BaseUrl))
|
|
||||||
{
|
|
||||||
app.UseBaseUrlRedirection();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Wrap rest of configuration so everything only listens on BaseUrl.
|
// Wrap rest of configuration so everything only listens on BaseUrl.
|
||||||
app.Map(_serverConfigurationManager.Configuration.BaseUrl, mainApp =>
|
app.Map(_serverConfigurationManager.Configuration.BaseUrl, mainApp =>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user