5 lines
147 B
Text
5 lines
147 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
# pipe stderr to stdout and run nginx omiting ENV vars to avoid security leaks
|
||
|
exec 2>&1
|
||
|
exec env - PATH=$PATH nginx -g 'daemon off;'
|