HttpServerLite icon indicating copy to clipboard operation
HttpServerLite copied to clipboard

TCP-based user-space HTTP and HTTPS server, written in C#, with no dependency on http.sys.

Results 4 HttpServerLite issues
Sort by recently updated
recently updated
newest added

I'm writing a nuget server implementation using this library and because status codes are hardcoded when sending http Conflict(409) i get this ![WindowsTerminal_Bi1YeFV6P6](https://github.com/jchristn/HttpServerLite/assets/52300935/81287b3e-117b-4763-a300-1986d245cbf1) Why not just use HttpStatusCode and then...

Hello! Is it possible to create websocket server with this package?

enhancement

Since HttpServerLite can only handle one server at a time, is there any way to make a reroute from port 80 (without SSL) to 443 (with SSL), so my site...

enhancement

SocketException: Only one usage of each socket address (protocol/network address/port) is normally permitted. Code: Variable `private Webserver _webserver;` Constructor: `_webserver = new Webserver("localhost", 8000, IndexHtml); _webserver.Start();` My IndexHtml method: `private...