Searched refs:acf (Results 1 – 5 of 5) sorted by relevance
/unit/src/ |
H A D | nxt_http_return.c | 36 nxt_http_action_conf_t *acf) in nxt_http_return_init() argument 49 conf->status = nxt_conf_get_number(acf->ret); in nxt_http_return_init() 51 if (acf->location == NULL) { in nxt_http_return_init() 55 nxt_conf_get_string(acf->location, &str); in nxt_http_return_init()
|
H A D | nxt_http_static.c | 75 nxt_http_action_t *action, nxt_http_action_conf_t *acf) in nxt_http_static_init() argument 114 if (acf->index == NULL) { in nxt_http_static_init() 118 nxt_conf_get_string(acf->index, &str); in nxt_http_static_init() 127 if (acf->chroot.length > 0) { in nxt_http_static_init() 131 conf->chroot = nxt_var_compile(&acf->chroot, mp, 1); in nxt_http_static_init() 151 if (acf->follow_symlinks != NULL in nxt_http_static_init() 152 && !nxt_conf_get_boolean(acf->follow_symlinks)) in nxt_http_static_init() 157 if (acf->traverse_mounts != NULL in nxt_http_static_init() 158 && !nxt_conf_get_boolean(acf->traverse_mounts)) in nxt_http_static_init() 164 if (acf->types != NULL) { in nxt_http_static_init() [all …]
|
H A D | nxt_http.h | 373 nxt_http_action_conf_t *acf); 376 nxt_http_action_t *action, nxt_http_action_conf_t *acf); 391 nxt_http_action_conf_t *acf);
|
H A D | nxt_http_route.c | 646 nxt_http_action_conf_t acf; in nxt_http_action_init() local 648 nxt_memzero(&acf, sizeof(acf)); in nxt_http_action_init() 651 nxt_nitems(nxt_http_route_action_conf), &acf); in nxt_http_action_init() 660 if (acf.ret != NULL) { in nxt_http_action_init() 661 return nxt_http_return_init(mp, action, &acf); in nxt_http_action_init() 664 if (acf.share != NULL) { in nxt_http_action_init() 665 return nxt_http_static_init(task, tmcf, action, &acf); in nxt_http_action_init() 668 if (acf.proxy != NULL) { in nxt_http_action_init() 669 return nxt_http_proxy_init(mp, action, &acf); in nxt_http_action_init() 672 nxt_conf_get_string(acf.pass, &pass); in nxt_http_action_init()
|
H A D | nxt_http_proxy.c | 54 nxt_http_action_conf_t *acf) in nxt_http_proxy_init() argument 62 nxt_conf_get_string(acf->proxy, &name); in nxt_http_proxy_init()
|