Home
last modified time | relevance | path

Searched refs:access (Results 1 – 11 of 11) sorted by relevance

/unit/src/
H A Dnxt_application.h104 nxt_conf_value_t *access; member
111 nxt_conf_value_t *access; member
H A Dnxt_file.h103 nxt_uint_t mode, nxt_uint_t create, nxt_file_access_t access);
107 nxt_uint_t mode, nxt_uint_t create, nxt_file_access_t access, nxt_fd_t dfd,
179 nxt_file_access_t access);
H A Dnxt_file.c12 nxt_uint_t create, nxt_file_access_t access) in nxt_file_open() argument
21 file->fd = open((char *) file->name, mode, access); in nxt_file_open()
30 file->name, mode, access, file->fd, file->error); in nxt_file_open()
49 nxt_uint_t create, nxt_file_access_t access, nxt_fd_t dfd, in nxt_file_openat2() argument
60 how.mode = access; in nxt_file_openat2()
316 nxt_file_set_access(nxt_file_name_t *name, nxt_file_access_t access) in nxt_file_set_access() argument
318 if (nxt_fast_path(chmod((char *) name, access) == 0)) { in nxt_file_set_access()
H A Dnxt_listen_socket.c45 nxt_file_access_t access; in nxt_listen_socket_create() local
135 access = rt->control_mode > 0 ? rt->control_mode : S_IRUSR | S_IWUSR; in nxt_listen_socket_create()
137 if (nxt_file_set_access(name, access) != NXT_OK) { in nxt_listen_socket_create()
H A Dnxt_main_process.c375 offsetof(nxt_common_app_conf_t, u.wasm.access),
389 offsetof(nxt_common_app_conf_t, u.wasm_wc.access),
1278 mode_t access; in nxt_main_listening_socket() local
1282 access = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); in nxt_main_listening_socket()
1284 if (chmod(filename, access) != 0) { in nxt_main_listening_socket()
/unit/src/wasm/
H A Dnxt_wasm.c271 if (c->access != NULL) { in nxt_wasm_setup()
272 dirs = nxt_conf_get_object_member(c->access, &filesystem_str, NULL); in nxt_wasm_setup()
/unit/docs/
H A Dunit-openapi.yaml804 [access log](https://unit.nginx.org/configuration/#access-log)."
807 - access log
835 - access log
870 - access log
890 - access log
917 - access log
950 - access log
970 - access log
996 - access log
1028 - access log
[all …]
/unit/auto/
H A Dshmem32 ret = (access(name, F_OK) == 0);
/unit/src/wasm-wasi-component/src/
H A Dlib.rs69 if !wasm_conf.access.is_null() { in setup()
71 wasm_conf.access, in setup()
/unit/
H A DCHANGES7 *) Feature: conditional access logging.
9 *) Feature: NJS variables access.
200 *) Feature: customizable access log format.
990 *) Bugfix: a segmentation fault might have occurred while access log
1008 *) Feature: basic access logging.
/unit/src/python/
H A Dnxt_python.c189 pep405 = (access(path, R_OK) == 0); in nxt_python_start()