-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
51 lines (48 loc) · 1.29 KB
/
appsettings.json
File metadata and controls
51 lines (48 loc) · 1.29 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllConfigurations": {
"IsCloud": false,
"NonCloudConfig": {
"StorageConfig": {
"ImagePath": "D:\\images\\"
},
"Database": {
"DBEndpoint": "<<Your DB endpoint>>",
"DBName": "<<Your DB schema name>>",
"DBUserId": "<<Your DB username>>",
"DBPassword": "<Your DB password>>"
},
"Encryption": {
"EncKey": "b14ca5898a4e4133bbce2ea2315a1916"
}
},
"CloudConfig": {
"S3": {
"bucketname": "<<Create a bucket>>",
"bucketregion": "<<Your bucket region>>",
"accesskey": "<<IAM user AccessKey>>",
"Seckey": "<<IAM user SecKey>>"
},
"RDS": {
"DBEndpoint": "<<Your DB endpoint>>",
"DBName": "<<Your DB schema name>>",
"DBUserId": "<<Your DB username>>",
"DBPassword": "<<Your DB password>>"
},
"APIs": {
"SignUpURL": "<<Your API Gateway SignUp API endpoint>>",
"SignInURL": "<<Your API Gateway SignIn API endpoint>>"
},
"Encryption": {
"KMSID": "<<KMS ID>>",
"KMSRegion": "<<region>>"
}
}
},
"AllowedHosts": "*"
}