13 lines
706 B
YAML
13 lines
706 B
YAML
http_host: localhost:80 # Http server host
|
|
https_host: localhost:443 # Https server host
|
|
|
|
threadpool_size: 10 # Threadpool size (count of threads that accept requests)
|
|
connection_timeout: 10 # Read and write timeout of connections in seconds
|
|
|
|
sites:
|
|
- domain: localhost # Site domain
|
|
host: localhost:8080 # Http server host
|
|
support_keep_alive: false # Does server supports keep-alive connections
|
|
# ssl_cert: "/path/to/public/certificate.txt" # Ssl public certificate file (optional)
|
|
# ssl_key: "/path/to/private/key.txt" # Ssl private key file (optional)
|