Add README for server folder

This commit is contained in:
CJ Cobb
2021-06-23 11:46:00 -04:00
committed by GitHub
parent c0ddc9d482
commit 0d2aef18b5

9
src/server/README.md Normal file
View File

@@ -0,0 +1,9 @@
This folder contains all of the classes for running the webserver.
The webserver handles JSON-RPC and websocket requests.
The webserver supports SSL if a cert and key file are specified in the config.
The webserver handles all types of requests on a single port.
Each request is handled asynchronously using boost asio.
Much of this code was originally copied from boost beast example code.