Merge branch 'feature/reverse-proxy-chnage' of https://github.com/ombi-app/Ombi into feature/reverse-proxy-chnage

This commit is contained in:
tidusjar 2021-02-12 12:15:39 +00:00
commit 66aac001e7

View file

@ -255,10 +255,17 @@ namespace Ombi
throw new Exception(error);
}
var indexHtml = await File.ReadAllTextAsync(indexPath);
indexHtml = indexHtml.Replace("<script type='text/javascript'>window[\"baseHref\"] = '/';</script>"
, $"<script type='text/javascript'>window[\"baseHref\"] = '{trimmedBaseUrl}';</script><base href=\"{baseUrl}\">", StringComparison.InvariantCultureIgnoreCase);
var sb = new StringBuilder(indexHtml);
await File.WriteAllTextAsync(indexPath, indexHtml);
var headPosition = indexHtml.IndexOf("<head>");
var firstLinkPosition = indexHtml.IndexOf("<link");
sb.Remove(headPosition + 6, firstLinkPosition - headPosition - 6);
sb.Insert(headPosition + 6,
$"<script type='text/javascript'>window[\"baseHref\"] = '{trimmedBaseUrl}';</script><base href=\"{trimmedBaseUrl}/\">");
await File.WriteAllTextAsync(indexPath, sb.ToString());
Console.WriteLine($"Wrote new baseurl at {indexPath}");
}