alpine-php7-webserver/rootfs/etc/service/nginx/run
2024-12-03 15:40:44 +01:00

5 lines
No EOL
147 B
Bash
Executable file

#!/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;'