diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-07-09 20:34:51 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-07-09 20:34:51 +0300 |
commit | 1abdcfb2d85a04b27ac4fc52619b63917b980839 (patch) | |
tree | 64c1e37f2e45e7ed920732d172504abc77f05ca5 /src/nxt_router.c | |
parent | 5a05f569b7a637649ce13c40f9d7758b0c37abe6 (diff) | |
download | unit-1abdcfb2d85a04b27ac4fc52619b63917b980839.tar.gz unit-1abdcfb2d85a04b27ac4fc52619b63917b980839.tar.bz2 |
Controller: added "settings" configuration object.
It has the following structure and default values:
{
"http": {
"header_read_timeout": 30,
"body_read_timeout": 30,
"send_timeout": 30,
"idle_timeout": 180,
"max_body_size": 8388608
}
}
Diffstat (limited to 'src/nxt_router.c')
-rw-r--r-- | src/nxt_router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_router.c b/src/nxt_router.c index 9e71c3ec..d9df48ec 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -1297,7 +1297,7 @@ nxt_router_conf_create(nxt_task_t *task, nxt_router_temp_conf_t *tmcf, nxt_router_access_log_t *access_log; nxt_router_listener_conf_t lscf; - static nxt_str_t http_path = nxt_string("/http"); + static nxt_str_t http_path = nxt_string("/settings/http"); static nxt_str_t applications_path = nxt_string("/applications"); static nxt_str_t listeners_path = nxt_string("/listeners"); static nxt_str_t access_log_path = nxt_string("/access_log"); |