-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
83 lines (83 loc) · 2.43 KB
/
appsettings.Development.json
File metadata and controls
83 lines (83 loc) · 2.43 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore": "Information"
}
},
"Infrastructure": {
"SqlConnectionString": "Server=db52197.public.databaseasp.net; Database=db52197; User Id=db52197; Password=3Mm!x5#Y?rR9; Encrypt=True; TrustServerCertificate=True; MultipleActiveResultSets=True;",
"RedisConnectionString": "rediss://default:gQAAAAAAAYY8AAIgcDIwYmNkMjFmM2Q0NDk0MGRiOWZhZjczNDE1NmMwZjFlMw@game-elk-99900.upstash.io:6379",
"LocalUploadsRoot": "./backend/uploads/",
"ClamAvHost": "localhost",
"ClamAvPort": 3310
},
"Keycloak": {
"Authority": "http://localhost:8080/realms/cce-internal",
"Audience": "cce-admin-cms",
"RequireHttpsMetadata": false,
"AdditionalValidIssuers": [
"http://host.docker.internal:8080/realms/cce-internal"
]
},
"Auth": {
"DevMode": true,
"DefaultDevRole": "cce-admin"
},
"EntraId": {
"Instance": "https://login.microsoftonline.com/",
"TenantId": "common",
"ClientId": "00000000-0000-0000-0000-000000000000",
"ClientSecret": "dev-entra-secret-change-me",
"Audience": "api://00000000-0000-0000-0000-000000000000",
"GraphTenantId": "00000000-0000-0000-0000-000000000000",
"GraphTenantDomain": "cce.local",
"CallbackPath": "/signin-oidc"
},
"Messaging": {
"Transport": "InMemory",
"UseAsyncDispatcher": true
},
"LocalAuth": {
"External": {
"Issuer": "cce-api-external-dev",
"Audience": "cce-public-dev",
"SigningKey": "dev-external-local-auth-signing-key-change-me-12345"
},
"Internal": {
"Issuer": "cce-api-internal-dev",
"Audience": "cce-admin-dev",
"SigningKey": "dev-internal-local-auth-signing-key-change-me-12345"
},
"AccessTokenMinutes": 10,
"RefreshTokenDays": 30,
"PasswordResetTokenHours": 2,
"RequireConfirmedEmail": false
},
"Email": {
"Provider": "gateway",
"Host": "localhost",
"Port": 1025,
"FromAddress": "no-reply@cce.local",
"FromName": "CCE Knowledge Center",
"Username": "",
"Password": "",
"EnableSsl": false
},
"ExternalApis": {
"CommunicationGateway": {
"BaseUrl": "http://localhost:3001",
"TimeoutSeconds": 30
},
"AdminAuthGateway": {
"BaseUrl": "http://localhost:3001",
"TimeoutSeconds": 30
}
},
"Media": {
"BaseUrl": "https://cce-internal-api.runasp.net/media/"
},
"Seq": {
"ServerUrl": "http://localhost:5341"
}
}