19 lines
510 B
JSON
19 lines
510 B
JSON
{
|
|
"root_dir": "./examples/www",
|
|
"port": 8080,
|
|
"threaded": true,
|
|
"num_workers": 4,
|
|
"max_connections": 10000,
|
|
"timeout_ms": 30000,
|
|
"log_level": "info",
|
|
"gzip_enabled": true,
|
|
"brotli_enabled": true,
|
|
"plugins": ["plugins/hello.so"],
|
|
"access_log": "-",
|
|
"proxies": [
|
|
{"prefix": "/api", "target": "http://localhost:3000"},
|
|
{"prefix": "/api", "target": "http://localhost:3001"},
|
|
{"prefix": "/backend", "target": "https://localhost:8443"}
|
|
]
|
|
}
|