-
Notifications
You must be signed in to change notification settings - Fork 558
/
appsettings.json
161 lines (160 loc) · 4.33 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
153
154
155
156
157
158
159
160
161
{
"ConnectionStrings": {
"ClassifiedAds": "Server=127.0.0.1;Database=ClassifiedAds;User Id=sa;Password=sqladmin123!@#;MultipleActiveResultSets=true;Encrypt=False"
},
"CheckDependency": {
"Enabled": false,
"Host": "localhost:44380"
},
"FeatureManagement": {
"FileManagement": true,
"HealthChecksUI": true
},
"OpenIdConnect": {
"Authority": "https://localhost:44367",
"ClientId": "ClassifiedAds.WebMVC",
"ClientSecret": "secret",
"RequireHttpsMetadata": "true"
},
"ResourceServer": {
"Endpoint": "https://localhost:44312",
"PublicEndpoint": "https://localhost:44312"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"System": "Warning",
"Microsoft": "Warning"
},
"File": {
"MinimumLogEventLevel": "Information"
},
"ApplicationInsights": {
"IsEnabled": false,
"InstrumentationKey": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
"AwsCloudWatch": {
"IsEnabled": false,
"LogGroup": "xxx",
"LogStreamNamePrefix": "ClassifiedAds.WebMVC",
"Region": "ap-southeast-1",
"AccessKey": "xxx",
"SecretKey": "xxx"
},
"OpenTelemetry": {
"IsEnabled": false,
"ServiceName": "ClassifiedAds.WebMVC",
"Otlp": {
"IsEnabled": false,
"Endpoint": "http://localhost:4317"
},
"AzureMonitor": {
"IsEnabled": false,
"ConnectionString": "xxx"
}
}
},
"Caching": {
"InMemory": {
"SizeLimit": null
},
"Distributed": {
"Provider": "InMemory",
"InMemory": {
"SizeLimit": null
},
"Redis": {
"Configuration": "xxx.redis.cache.windows.net:6380,password=xxx,ssl=True,abortConnect=False",
"InstanceName": ""
},
"SqlServer": {
"ConnectionString": "Server=127.0.0.1;Database=ClassifiedAds;User Id=sa;Password=sqladmin123!@#",
"SchemaName": "dbo",
"TableName": "CacheEntries"
}
}
},
"Monitoring": {
"MiniProfiler": {
"IsEnabled": true
},
"AzureApplicationInsights": {
"IsEnabled": false
},
"OpenTelemetry": {
"IsEnabled": false,
"ServiceName": "ClassifiedAds.WebMVC",
"Otlp": {
"IsEnabled": false,
"Endpoint": "http://localhost:4317"
},
"AzureMonitor": {
"IsEnabled": false,
"ConnectionString": "xxx"
}
}
},
"AllowedHosts": "*",
"CurrentUrl": "https://localhost:44364",
"ConfigurationProviders": {
"SqlServer": {
"IsEnabled": false,
"ConnectionString": "Server=127.0.0.1;Database=ClassifiedAds;User Id=sa;Password=sqladmin123!@#;MultipleActiveResultSets=true",
"SqlQuery": "select [Key], [Value] from ConfigurationEntries where [IsSensitive] = 0",
//"SqlQuery": "select [Key], [Value], [IsSensitive] from ConfigurationEntries",
"Certificate": {
"Thumbprint": null,
"Path": "Certs/classifiedads.secretsencryption.pfx",
"Password": "password1234"
}
},
"AzureAppConfiguration": {
"IsEnabled": false,
"ConnectionString": "Endpoint=https://xxx.azconfig.io;Id=xxx;Secret=xxx"
},
"AzureKeyVault": {
"IsEnabled": false,
"VaultName": "https://xxx.vault.azure.net/"
}
},
"Storage": {
"Provider": "Local",
"Local": {
"Path": "C:\\Data\\files"
},
"Azure": {
"ConnectionString": "DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=xxx;EndpointSuffix=core.windows.net",
"Container": "classifiedadds"
},
"Amazon": {
"AccessKeyID": "xxx",
"SecretAccessKey": "xxx",
"BucketName": "classifiedadds",
"RegionEndpoint": "ap-southeast-1"
}
},
"CookiePolicyOptions": {
},
"SecurityHeaders": {
"Content-Security-Policy": "form-action 'self'; frame-ancestors 'none'",
"Feature-Policy": "camera 'none'",
"Referrer-Policy": "strict-origin-when-cross-origin",
"X-Content-Type-Options": "nosniff",
"X-Frame-Options": "DENY",
"X-XSS-Protection": "1; mode=block",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
"Expires": "0"
},
"Interceptors": {
"LoggingInterceptor": true,
"ErrorCatchingInterceptor": true
},
"Azure": {
"SignalR": {
"IsEnabled": false,
"ConnectionString": "",
"ServerStickyMode": "Required"
}
}
}