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