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