From 9aaa7d8c20e58ed380225cbbbd05248539d2f500 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Sat, 26 Aug 2017 13:37:44 +0300 Subject: Added configure option --user=USER and --group=GROUP. --- auto/options | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'auto') 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 ;; -- cgit