nxt_main_process.c (1697:73a335d2911d) nxt_main_process.c (1759:196b4d90c8cc)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8#include <nxt_runtime.h>

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

177 {
178 nxt_string("home"),
179 NXT_CONF_MAP_CSTRZ,
180 offsetof(nxt_common_app_conf_t, u.python.home),
181 },
182
183 {
184 nxt_string("path"),
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8#include <nxt_runtime.h>

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

177 {
178 nxt_string("home"),
179 NXT_CONF_MAP_CSTRZ,
180 offsetof(nxt_common_app_conf_t, u.python.home),
181 },
182
183 {
184 nxt_string("path"),
185 NXT_CONF_MAP_STR,
185 NXT_CONF_MAP_PTR,
186 offsetof(nxt_common_app_conf_t, u.python.path),
187 },
188
189 {
190 nxt_string("module"),
191 NXT_CONF_MAP_STR,
192 offsetof(nxt_common_app_conf_t, u.python.module),
193 },

--- 1298 unchanged lines hidden ---
186 offsetof(nxt_common_app_conf_t, u.python.path),
187 },
188
189 {
190 nxt_string("module"),
191 NXT_CONF_MAP_STR,
192 offsetof(nxt_common_app_conf_t, u.python.module),
193 },

--- 1298 unchanged lines hidden ---