mirror of
https://github.com/Jackett/Jackett
synced 2025-02-12 17:44:42 +00:00
This reverts commit 642bed1ef4
.
This commit is contained in:
parent
090ae2db08
commit
d44bc93776
1 changed files with 3 additions and 3 deletions
|
@ -45,9 +45,9 @@ namespace Jackett.Server
|
||||||
.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme,
|
.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme,
|
||||||
options =>
|
options =>
|
||||||
{
|
{
|
||||||
options.LoginPath = new PathString(Helper.ServerService.BasePath() + "/UI/Login");
|
options.LoginPath = new PathString("/UI/Login");
|
||||||
options.AccessDeniedPath = new PathString(Helper.ServerService.BasePath() + "/UI/Login");
|
options.AccessDeniedPath = new PathString("/UI/Login");
|
||||||
options.LogoutPath = new PathString(Helper.ServerService.BasePath() + "/UI/Logout");
|
options.LogoutPath = new PathString("/UI/Logout");
|
||||||
options.Cookie.Name = "Jackett";
|
options.Cookie.Name = "Jackett";
|
||||||
options.Cookie.SameSite = SameSiteMode.None;
|
options.Cookie.SameSite = SameSiteMode.None;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue