-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
42 lines (42 loc) · 1.07 KB
/
appsettings.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"urls": "http://localhost:5120",
"AllowedHosts": "*",
"HttpEndPoint": "http://mainnet1.cypherpunks.network:48655",
"X509Certificate": {
"CertPath": "certificate.pfx",
"Password": "mypassword",
"Thumbprint": ""
},
"LettuceEncrypt": {
"AcceptTermsOfService": true,
"DomainNames": [ "faucet.domain" ],
"EmailAddress": "me@name.domain"
},
"Log": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"System": "Warning",
"Microsoft": "Warning"
}
},
"Enrich": "FromLogContext",
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss} [{Level:u3}] [{SourceContext}] [{MemberName}:{LineNumber}] {Message}{NewLine}{Exception}"
}
},
{
"Name": "File",
"Args": {
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact",
"path": "faucet.log",
"rollingInterval": "Day",
"retainedFileCountLimit": 7
}
}
]
}
}