Add more parameters to the document
This commit is contained in:
parent
82a5f98af6
commit
59a1157cab
1 changed files with 22 additions and 8 deletions
18
README.md
18
README.md
|
@ -8,8 +8,22 @@ LiHaSo Webserver Modul
|
|||
|
||||
Parameter List:
|
||||
```
|
||||
lweb::#conf_port ;Listening Port
|
||||
lweb::#conf_binding ;Interface binding e.g. only localhost with "127.0.0.1"
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue