-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.appsettings.json
More file actions
43 lines (43 loc) · 1.13 KB
/
sample.appsettings.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
// Logging levels
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning",
"Microsoft.Hosting.Lifetime": "Warning"
}
},
// Allowed hosts
"AllowedHosts": "*",
// Url to run the app at
"Urls": "http://0.0.0.0:5000",
// Authentication
"Authentication": {
"Authority": "https://idp.example.com/realms/master",
"Audience": "account"
},
// Connection Strings - Database
"ConnectionStrings": {
"Database": "Host=localhost;Database=lighthousenotes;Username=lighthousenotes;Password=changeme"
},
// Sqids - Short unique identifiers from numbers
"Sqids": {
"Alphabet": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",
"MinLength": 10
},
// Minio - S3 Bucket
"Minio": {
"Endpoint": "127.0.0.1:9000",
"BucketName": "lighthousenotes",
"NetworkEncryption": false,
"AccessKey": "changeme",
"SecretKey": "changeme"
},
// Meilisearch - Search Engine
"Meilisearch": {
"Url": "http://localhost:7700",
"Key": "changeme"
},
// URL of the web application for cross-origin
"WebApp": "https://app.example.com"
}