-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathappsettings.json
More file actions
30 lines (30 loc) · 965 Bytes
/
appsettings.json
File metadata and controls
30 lines (30 loc) · 965 Bytes
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
{
"ConnectionStrings": {
"DefaultConnectionForWindows": "Server=(localdb)\\mssqllocaldb;Database=ContentServiceDB;Trusted_Connection=True;TrustServerCertificate=true;",
"DefaultConnectionForLinux": "Server=localhost,1433;Database=ContentServiceDB;User ID=SA;Password=password_1234;TrustServerCertificate=True;"
},
"Logging": {
"LogLevel": {
"Default": "Information"
}
},
"AllowedHosts": "*",
"ExternalStorageConfiguration": {
"AccessKeyId": "abc",
"SecretKey": "efg",
"Region": "us-east-1",
"ServiceURL": "https://storage.yandexcloud.net",
"DefaultBucketName": "users-content-bucket"
},
"LocalStorageConfiguration": {
"Path": "/app/data/"
},
"ServiceName": "Content API",
"Services": {
"Auth": "http://localhost:5001",
"Courses": "http://localhost:5002",
"Notifications": "http://localhost:5006",
"Solutions": "http://localhost:5007",
"Content": "http://localhost:5008"
}
}