-
Notifications
You must be signed in to change notification settings - Fork 1
/
appsettings.json
152 lines (152 loc) · 3.77 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"ConnectionStrings": {
"Default": "Server=localhost; Database=ThemeTestingProjectDemoDb; Trusted_Connection=True;"
},
"AbpZeroLicenseCode": "004PGsuUoSrWHt3iqD8dQO+5DSouPBoE+Ye6JA/19uzU4=b6729686d064822581d2fe93b0249688",
"Abp": {
"RedisCache": {
"ConnectionString": "localhost",
"DatabaseId": -1
}
},
"App": {
"ServerRootAddress": "http://localhost:22742/",
"ClientRootAddress": "http://localhost:4200/",
"CorsOrigins": "http://*.mycompany.com,http://localhost:4200,http://localhost:49152",
"SwaggerEndPoint": "/swagger/v1/swagger.json",
"AllowAnonymousSignalRConnection": "true"
},
"Authentication": {
"Facebook": {
"IsEnabled": "false",
"AppId": "",
"AppSecret": ""
},
"Google": {
"IsEnabled": "false",
"ClientId": "",
"ClientSecret": "",
"UserInfoEndpoint": "https://www.googleapis.com/oauth2/v2/userinfo"
},
"Microsoft": {
"IsEnabled": "false",
"ConsumerKey": "",
"ConsumerSecret": ""
},
"OpenId": {
"IsEnabled": "false",
"ClientId": "",
"Authority": "",
"LoginUrl": "",
"ValidateIssuer": "false",
"ClaimsMapping": [
{
"claim": "unique_name",
"key": "preferred_username"
}
]
},
"WsFederation": {
"IsEnabled": "false",
"Authority": "",
"ClientId": "",
"Tenant": "",
"MetaDataAddress": ""
},
"JwtBearer": {
"IsEnabled": "true",
"SecurityKey": "ThemeTestingProjectDemo_8CFB2EC534E14D56",
"Issuer": "ThemeTestingProjectDemo",
"Audience": "ThemeTestingProjectDemo"
}
},
"Twilio": {
"AccountSid": "",
"AuthToken": "",
"SenderNumber": ""
},
"Recaptcha": {
"SiteKey": "6LfD-wUTAAAAACULAVXvL61K0w02RIsjhI8EyiS-",
"SecretKey": "6LfD-wUTAAAAADm3h7vomd9FtaAlAwexki29BtXC"
},
"IdentityServer": {
"IsEnabled": "false",
"Authority": "http://localhost:22742/",
"ApiName": "default-api",
"ApiSecret": "secret",
"Clients": [
{
"ClientId": "client",
"AllowedGrantTypes": [
"password"
],
"ClientSecrets": [
{
"Value": "def2edf7-5d42-4edc-a84a-30136c340e13"
}
],
"AllowedScopes": [
"default-api"
]
},
{
"ClientId": "demo",
"ClientName": "MVC Client Demo",
"AllowedGrantTypes": [
"hybrid"
],
"RequireConsent": "true",
"ClientSecrets": [
{
"Value": "def2edf7-5d42-4edc-a84a-30136c340e13"
}
],
"RedirectUris": [
"http://openidclientdemo.com:8001/signin-oidc"
],
"PostLogoutRedirectUris": [
"http://openidclientdemo.com:8001/signout-callback-oidc"
],
"AllowedScopes": [
"openid",
"profile",
"default-api"
],
"AllowOfflineAccess": "true"
}
]
},
"Payment": {
"PayPal": {
"IsActive": "true",
"Environment": "sandbox",
"BaseUrl": "https://api.sandbox.paypal.com/v1",
"ClientId": "",
"ClientSecret": "",
"DemoUsername": "",
"DemoPassword": ""
},
"Stripe": {
"IsActive": "true",
"BaseUrl": "https://api.stripe.com/v1",
"SecretKey": "",
"PublishableKey": "",
"WebhookSecret": "",
"PaymentMethodTypes": [ "card" ]
}
},
"HealthChecks": {
"HealthChecksEnabled": false,
"HealthChecksUI": {
"HealthChecksUIEnabled": false,
"HealthChecks": [
{
"Name": "ThemeTestingProjectDemo.Web.Host",
"Uri": "http://localhost:22742/healthz"
}
],
"EvaluationTimeOnSeconds": 10,
"MinimumSecondsBetweenFailureNotifications": 60
}
}
}