Simple-Web-Server
Simple-Web-Server copied to clipboard
A very simple, fast, multithreaded, platform independent HTTP and HTTPS server and client library implemented using C++11 and Boost.Asio. Created to be an easy way to make REST resources available fro...
I think it would be nicer when using headers if they were in a map instead of a multimap. Ref: RFC 7230 section 3.2.2 Except for the set-cookie header it...
https://github.com/eidheim/Simple-Web-Server/blob/b9d4be229f41e3eda72394451d479f5245d2a600/server_https.hpp#L24 Is `verify_file` the pem file for the CA? Thank you.
https://github.com/eidheim/Simple-Web-Server/blob/b9d4be229f41e3eda72394451d479f5245d2a600/server_http.hpp#L233 Does this associate the timer with connection so it gets cancelled automatically when the connection is closed?
I appreciate the author's philosophy on keeping things simple, but it seems this project is becoming the most promising open-source embedded C++ web server on the web and it is...
Hi, how to serialize json response?
server.on_error = [](std::shared_ptr request, const boost::system::error_code& e) { std::cout
Hi, Thanks for creating this simple and fun to use web server :) I have the following issue with character encoding in the request body: I send JSON string in...
I think a really nice addition to this library would be adding http2 support. This is particularly beneficial for high performance API applications since http2 supports multiplexing and has a...
The server provided works great and when I first start up the process, it works great. However, when I kill the process (Ctrl + z) and try to start the...
Hello, I realize this repository is for the server side, so I apologize if this is a stupid question. I'm trying to use this client to communicate with a server...