6 lines
132 B
Bash
Executable File
6 lines
132 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
export DOLLAR='$'
|
|
envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
|
nginx -g 'daemon off;'
|