-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
40 lines (39 loc) · 934 Bytes
/
Copy pathappsettings.json
File metadata and controls
40 lines (39 loc) · 934 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
31
32
33
34
35
36
37
38
39
40
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Trace",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"InMemoryDataStore": "XpoProvider=InMemoryDataStore;"
},
"SwaggerOptions": {
"JsonRoute": "swagger/{documentName}/swagger.json",
"Description": "ExampleAPI",
"UIEndpoint": "v1/swagger.json"
},
"JwtSettings": {
"Issuer": "ExampleAPI",
"Audience": "ExampleAPI",
"Secret": "SomeReallyAwesomeSecretThatIsHardToGuess",
"TokenLifetime": "01:00:00"
},
"BackendAuth": {
"TokenPassword": "WhyHaveAStaticToken?"
},
"Cors": {
"AllowedOrigins": [ "https://example.com" ]
},
"rabbit": {
"UserName": "Username",
"Password": "RandoPassword",
"HostName": "SomeServer",
"VHost": "VhostDetails",
"Port": 5672,
"AppName": "ExampleAPI"
}
}