We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4356f79 + 60bb118 commit de3d828Copy full SHA for de3d828
src/SilkierQuartz/Configuration/ServiceCollectionExtensions.cs
@@ -37,6 +37,7 @@ public static IServiceCollection AddSilkierQuartz(
37
.AddCookie(authenticationOptions.AuthScheme, cfg =>
38
{
39
cfg.Cookie.Name = $"sq_authenticationOptions.AuthScheme";
40
+ cfg.Cookie.Path = options.VirtualPathRoot;
41
cfg.LoginPath = $"{options.VirtualPathRoot}{(options.VirtualPathRoot.EndsWith('/') ? "" : "/")}Authenticate/Login";
42
cfg.AccessDeniedPath = $"{options.VirtualPathRoot}{(options.VirtualPathRoot.EndsWith('/') ? "" : "/")}Authenticate/Login";
43
cfg.ExpireTimeSpan = TimeSpan.FromDays(7);
0 commit comments