-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
57 lines (57 loc) · 1.3 KB
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"AllowedHosts": "*",
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Overrride": {
"Microsoft": "Information",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff} [{Level:u3}] {Message}{NewLine}{Exception}"
}
}
],
"Enrich": [ "FromLogContext" ]
},
"NameApp": "lolo1",
"Jwt": {
"SecretKey": "RIdz4c6a0mW5assnFYsE15ua2WwhCd9QWr8LAsV22BByInmzhvOS0iXJCIjlExS",
"Issuer": "skg.com",
"Audience": "skg.com",
"ExpirationDays": 30
},
"ApiUsers": [
{
"UserId": 1,
"Email": "[email protected]",
"Password": "$2a$11$.TcKYk6ISMrqm5Eq9RmvZuR2c5ZnwCBeMvweFYjYmHPIbBeTWzT1m",
"Roles": [ "admin" ]
}
],
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:5000"
}
}
},
"Keycloak": {
"realm": "sitmanizales-prod",
"auth-server-url": "https://keycloak.movilidad-manizales.com/auth",
"ssl-required": "external",
"resource": "smm-prod",
"verify-token-audience": true,
"credentials": {
"secret": "Qjxjo58KKZUX952Q3KQFWrwcTmF5aYnL"
},
"confidential-port": 0,
"policy-enforcer": {}
},
"RolReadUser": "admin",
"RolWriteUser": "admin"
}