mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-23 00:00:06 +01:00

This allows mounts to define the caching policy of the files inside them. Support is added in lwsws for controlling it from the config files. The api for serializing a mount struct opaquely is removed and lws_http_mount struct made public... it was getting out of control trying to hide the options. Signed-off-by: Andy Green <andy@warmcat.com>
15 lines
267 B
Text
15 lines
267 B
Text
# these are the server global settings
|
|
# stuff related to vhosts should go in one
|
|
# file per vhost in ../conf.d/
|
|
|
|
{
|
|
"global": {
|
|
"uid": "48",
|
|
"gid": "48",
|
|
"interface": "eth0",
|
|
"count-threads": "1",
|
|
"server-string": "lwsws",
|
|
"init-ssl": "yes"
|
|
}
|
|
}
|
|
|