1
0
Fork 0
netddi/appsettings.json

39 lines
675 B
JSON
Raw Normal View History

2025-01-29 23:26:50 +01:00
{
2025-01-30 00:14:20 +01:00
"Admin": {
"Authentication": true
},
"AllowedHosts": "*",
2025-01-29 23:26:50 +01:00
"ConnectionStrings": {
"DefaultConnection": "DataSource=app.db;Cache=Shared"
},
2025-01-30 00:14:20 +01:00
"Dhcp": {
"Kea": {
"Dhcp4": {
"Leases": "/var/lib/kea/kea-leases4.csv"
},
"Dhcp6": {
"Leases": "/var/lib/kea/kea-leases6.csv"
}
}
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://[::]:80"
}
}
},
2025-01-29 23:26:50 +01:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
2025-01-30 00:14:20 +01:00
"PowerDns": {
"Listener": {
"Socket": "/run/netddi/pdns.sock"
},
"UniqueHostnames": true
}
2025-01-29 23:26:50 +01:00
}