11 lines
91 B
Bash
11 lines
91 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ "${1#-}" != "$1" ]
|
||
|
then
|
||
|
set -- /usr/sbin/nginx "$@"
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|