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_application.h | |
parent | 771dc2f55ebff313b99494411f8795e7a6fb76d5 (diff) | |
download | unit-388390888bc0c2a3589b71e5b3dc57408a5f4c44.tar.gz unit-388390888bc0c2a3589b71e5b3dc57408a5f4c44.tar.bz2 |
PHP: added setting of php.ini configuration file path.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_application.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index 96af1d67..0ddaeb7c 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -46,9 +46,10 @@ typedef struct { typedef struct { - char *root; - nxt_str_t script; - nxt_str_t index; + char *root; + nxt_str_t script; + nxt_str_t index; + nxt_conf_value_t *options; } nxt_php_app_conf_t; |