8 lines
103 B
Bash
8 lines
103 B
Bash
#!/bin/ash
|
|
if [ -z "$1" ]; then
|
|
set -- "nginx" \
|
|
-g \
|
|
'daemon off;'
|
|
fi
|
|
|
|
exec "$@" |