11 lines
198 B
Bash
Executable file
11 lines
198 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
envsubst "$(env | awk -F = '{printf \" $$%s\", $$1}')" \
|
|
< /etc/nginx/nginx.conf.template \
|
|
> /etc/nginx/nginx.conf
|
|
|
|
cat /etc/nginx/nginx.conf
|
|
|
|
nginx-debug -g 'daemon off;'
|