1
2/*
3 * Copyright (C) Max Romanov
4 * Copyright (C) Valentin V. Bartenev
5 * Copyright (C) NGINX, Inc.
6 */
7
8#ifndef _NXT_APPLICATION_H_INCLUDED_

--- 46 unchanged lines hidden (view full) ---

55struct nxt_common_app_conf_s {
56 nxt_str_t name;
57 nxt_str_t type;
58 nxt_str_t user;
59 nxt_str_t group;
60
61 char *working_directory;
62
63 uint32_t workers;
64
63 union {
64 nxt_python_app_conf_t python;
65 nxt_php_app_conf_t php;
66 nxt_go_app_conf_t go;
67 } u;
68};
69
70

--- 227 unchanged lines hidden ---