diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-26 13:37:44 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-26 13:37:44 +0300 |
commit | 9aaa7d8c20e58ed380225cbbbd05248539d2f500 (patch) | |
tree | fdce2cc852667f0c93e14909093376adf3c1a473 /auto/options | |
parent | e64494ba2cba9322f9594f26bcc69cb3a2441105 (diff) | |
download | unit-9aaa7d8c20e58ed380225cbbbd05248539d2f500.tar.gz unit-9aaa7d8c20e58ed380225cbbbd05248539d2f500.tar.bz2 |
Added configure option --user=USER and --group=GROUP.
Diffstat (limited to 'auto/options')
-rw-r--r-- | auto/options | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/auto/options b/auto/options index b7fcc179..bcf9e17a 100644 --- a/auto/options +++ b/auto/options @@ -16,6 +16,9 @@ NXT_PREFIX= NXT_PID="nginext.pid" NXT_LOG="nginext.log" +NXT_USER="nobody" +NXT_GROUP= + NXT_DEBUG=NO NXT_INET6=YES @@ -62,6 +65,9 @@ do --pid=*) NXT_PID="$value" ;; --log=*) NXT_LOG="$value" ;; + --user=*) NXT_USER="$value" ;; + --group=*) NXT_GROUP="$value" ;; + --debug) NXT_DEBUG=YES ;; --no-ipv6) NXT_INET6=NO ;; |