diff --git a/README.md b/README.md index 284784b..3879a02 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,28 @@ LiHaSo Webserver Modul Parameter List: ``` -lweb::#conf_port ;Listening Port -lweb::#conf_binding ;Interface binding e.g. only localhost with "127.0.0.1" -lweb::#conf_defaultfile ;Default file wen no file is selected(With extension!) e.g. "index.php" -lweb::#conf_basedir ;Default directory e.g. "/srv/www/htdocs/" -lweb::#conf_error400 ;TBD:error400 -lweb::#conf_max_clients ;Max clients connected at the same time. (Watch memory limits!) -lweb::#conf_server_type ;Currently no function.(e.g. HTTPS, HTTP/2) -lweb::#conf_cache_enable ;It enable the cache mode (0 disabled and 1 enabled.) Currently with debugger unstable. +HTTP Server Configuration: +lweb::#conf_HTTP_port ; Listening Port +lweb::#conf_HTTP_binding ; Interface binding e.g. only localhost with "127.0.0.1" +lweb::#conf_max_HTTP_clients ; Max connected Clients to the HTTP Server + +HTTPS Server Configuration: +lweb::#conf_HTTPS_Port ; Listening Port +lweb::#conf_HTTPS_Binding ; Interface binding e.g. only localhost with "127.0.0.1" +lweb::#conf_HTTPS_CA ; eg. "fullchain.pem" +lweb::#conf_HTTPS_Cert ; eg. "cert.pem" +lweb::#conf_HTTPS_Key ; eg. "privkey.pem" +lweb::#conf_HTTPS_Key_Pass ; eg. "Passw0rd" +lweb::#conf_max_HTTPS_clients ; Max connected Clients to the HTTPS Server +lweb::#conf_HTTPS_Enable ; It enable the https server (0 disabled and 1 enabled.) + +Other Server Configuration: +lweb::#conf_defaultfile ;Default file wen no file is selected(With extension!) e.g. "index.php" +lweb::#conf_basedir ;Default directory e.g. "/srv/www/htdocs/" +lweb::#conf_error400 ;TBD:error400 +lweb::#conf_max_clients ;Max clients connected at the same time. (Watch memory limits!) +lweb::#conf_server_type ;Currently no function.(e.g. HTTPS, HTTP/2) +lweb::#conf_cache_enable ;It enable the cache mode (0 disabled and 1 enabled.) Currently with debugger unstable. ``` #### Functions