Skip to content

Commit

Permalink
Align with NuGet.org's session duration
Browse files Browse the repository at this point in the history
  • Loading branch information
joelverhagen committed May 16, 2021
1 parent e00eca9 commit 19f414d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Website/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ await context
},
options =>
{
options.ExpireTimeSpan = TimeSpan.FromHours(1);
options.SlidingExpiration = false;
options.ExpireTimeSpan = TimeSpan.FromHours(6);
options.SlidingExpiration = true;
options.AccessDeniedPath = "/Home/AccessDenied";
});

Expand Down

0 comments on commit 19f414d

Please sign in to comment.