forked from AkkomaGang/admin-fe
5 lines
134 B
Bash
5 lines
134 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
envsubst "$(env | sed -e 's/=.*//' -e 's/^/\$/g')" < "/etc/nginx/nginx.conf.tpl" > "/etc/nginx/nginx.conf"
|
||
|
exec "$@"
|