-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
33 lines (33 loc) · 1.06 KB
/
Copy pathappsettings.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"ConnectionStrings": {
"DefaultConnection": "Host=/var/run/postgresql;Database=wayfarer;Username=wayfarer;Password=CHANGE_ME_BEFORE_DEPLOY"
},
"Logging": {
"LogLevel": {
"Default": "Information", // Default level for the entire app,
"Microsoft.AspNetCore": "Warning", // Specific logging level for ASP.NET Core,
"Wayfarer.Middleware.PerformanceMonitoringMiddleware": "Information" // Custom middleware logging
},
"LogFilePath": {
"Default": "/var/log/wayfarer/wayfarer-.log"
}
},
"CacheSettings": {
"TileCacheDirectory": "TileCache", // Relative path (works on Windows & Linux dev)
"ImageCacheDirectory": "ImageCache", // Proxied image cache directory
"ChromeCacheDirectory": "ChromeCache" // Chrome browser cache for PDF exports (auto-downloaded on first use)
},
"Application": {
"ContactEmail": "admin@localhost"
},
"AllowedHosts": "*",
"MobileGroups": {
"Query": {
"DefaultPageSize": 200,
"MaxPageSize": 500
}
},
"MobileSse": {
"HeartbeatIntervalMilliseconds": 20000
}
}