4 lines
105 B
Bash
4 lines
105 B
Bash
#!/bin/sh
|
|
|
|
envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
|
exec nginx -g 'daemon off;'
|