diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-06-07 16:17:31 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-06-07 16:17:31 +0300 |
commit | 388390888bc0c2a3589b71e5b3dc57408a5f4c44 (patch) | |
tree | bda1a989f5b7a6b2441c8c0c6dda94dd4ddbfe02 /src/nxt_main_process.c | |
parent | 771dc2f55ebff313b99494411f8795e7a6fb76d5 (diff) | |
download | unit-388390888bc0c2a3589b71e5b3dc57408a5f4c44.tar.gz unit-388390888bc0c2a3589b71e5b3dc57408a5f4c44.tar.bz2 |
PHP: added setting of php.ini configuration file path.
Diffstat (limited to 'src/nxt_main_process.c')
-rw-r--r-- | src/nxt_main_process.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nxt_main_process.c b/src/nxt_main_process.c index 032c05cd..e80034c4 100644 --- a/src/nxt_main_process.c +++ b/src/nxt_main_process.c @@ -169,6 +169,12 @@ static nxt_conf_map_t nxt_php_app_conf[] = { NXT_CONF_MAP_STR, offsetof(nxt_common_app_conf_t, u.php.index), }, + + { + nxt_string("options"), + NXT_CONF_MAP_PTR, + offsetof(nxt_common_app_conf_t, u.php.options), + }, }; |