Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
NewLifeProject
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Юнусов Ибрагим
NewLifeProject
Commits
e9f66102
Commit
e9f66102
authored
Jul 21, 2022
by
Юнусов Ибрагим
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Добавил настройки для аутентификации
parent
168958d0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
Program.cs
NewStores/Store/Program.cs
+14
-0
No files found.
NewStores/Store/Program.cs
View file @
e9f66102
using
Microsoft.AspNetCore.Authentication.Cookies
;
using
Microsoft.AspNetCore.Identity
;
using
Store.Extensions
;
using
Store.Models
;
...
...
@@ -22,6 +23,19 @@ services.Configure<IdentityOptions>(options =>
options
.
Password
.
RequiredUniqueChars
=
1
;
});
services
.
ConfigureApplicationCookie
(
options
=>
{
options
.
AccessDeniedPath
=
"/Accounts/AccessDenied"
;
options
.
Cookie
.
Name
=
"YourAppCookieName"
;
options
.
Cookie
.
HttpOnly
=
true
;
options
.
ExpireTimeSpan
=
TimeSpan
.
FromMinutes
(
60
);
options
.
LoginPath
=
"/Accounts/Login"
;
// ReturnUrlParameter requires
//using Microsoft.AspNetCore.Authentication.Cookies;
options
.
ReturnUrlParameter
=
CookieAuthenticationDefaults
.
ReturnUrlParameter
;
options
.
SlidingExpiration
=
true
;
});
var
app
=
builder
.
Build
();
AppContext
.
SetSwitch
(
"Npgsql.EnableLegacyTimestampBehavior"
,
true
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment