Files
FakeNTLMServer/appsettings.json
TekH 62dd45dd08 Restrict Kestrel server to HTTP/1 protocol in config
Added "Kestrel" section to appsettings.json to set endpoint default protocol to HTTP/1, preventing use of HTTP/2 or other protocols.
2026-03-16 09:44:41 +01:00

15 lines
221 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Kestrel": {
"EndpointDefaults": {
"Protocols": "Http1"
}
}
}