ceenhttpd
ceenhttpd copied to clipboard
A lightweight HTTP compliant web server written in C# with full async/await implementation
Hello, i am trying to implement a custom web application based on this project. first of all i want to say that this is a really cool project that is...
No dependencies are listed in your nuget packages. As a result, when trying to pull in, nuget refuses. Are you only supporting .net core/6+? Came here from a post in...
Hi! Does this library support linux? I can't seem to get it working... My code ``` var httpConfig = new ServerConfig() .AddRoute(new HttpRequestHandler()); var httpsConfig = new ServerConfig() .AddRoute(new HttpRequestHandler());...
I was wondering if it's possible to do wildcards in a route kinda like how in expressjs we do `app.get("foo/*")`, is this implemented?
Hi, is there a way to disable renegotiation on secure connection?
Hi, when serving content with ceen via HTTPS and sending a large multipart form request to it, it crashes silently. The browser tells that there was a connection error. File...
I am using a wifi device that connects to a host application running the http server. When the device logs on, it sends an http post in the following format:...
Hi, Just a quick question (hopefully). I have just tested the CEEN library using the timeofday example in your notes. The server works well but when ramping up the requests,...
Hey there, thanks for a great tool. I'd like to understand if/how I can serve files via HTTPS in the local network with Ceen, ideally with some automatic way of...
I'm using the ceenhttpd on version 0.9.9 and I have a client which can only support HTTP 2.0. Right now the ceen http request thows "HTTP Version Not Supported" error,...