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