mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
18 lines
254 B
Bash
Executable file
18 lines
254 B
Bash
Executable file
#!/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
|