diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-11-29 18:48:55 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-11-29 18:48:55 +0300 |
commit | 3781950badda9a937fdfaac25013006d9e106c67 (patch) | |
tree | 1f0109218ecfcb1dd9affc65b3fa8ee904e067c3 /src/nxt_application.h | |
parent | ec4ad8780e0afd7416c7ba7c32a1936e646cc286 (diff) | |
download | unit-3781950badda9a937fdfaac25013006d9e106c67.tar.gz unit-3781950badda9a937fdfaac25013006d9e106c67.tar.bz2 |
Introducing python virtualenv configuration.
New parameter 'home' for python application allows to configure
application-specific virtualenv path.
This closes #15 issue on GitHub.
Diffstat (limited to 'src/nxt_application.h')
-rw-r--r-- | src/nxt_application.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index 00659a28..615efc37 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -34,6 +34,7 @@ typedef struct nxt_common_app_conf_s nxt_common_app_conf_t; typedef struct { + char *home; nxt_str_t path; nxt_str_t module; } nxt_python_app_conf_t; |