diff options
Diffstat (limited to 'examples/var_service/httpd/run')
-rwxr-xr-x | examples/var_service/httpd/run | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/var_service/httpd/run b/examples/var_service/httpd/run new file mode 100755 index 000000000..ff8869b8a --- /dev/null +++ b/examples/var_service/httpd/run @@ -0,0 +1,18 @@ +#!/bin/sh + +#exec >/dev/null +exec 2>&1 +exec </dev/null + +user=www +user=root + +echo "* Starting tcpsvd for httpd [$$]" +exec \ +env - PATH="$PATH" \ +softlimit \ +tcpsvd \ + -v -E -l localhost -c 5 \ + 0 88 \ +setuidgid "$user" \ +httpd -vvv -i -h /pub/httpd_root |