Gitiles
Code Review
Sign In
review.vexxhost.dev
/
atmosphere
/
refs/heads/main
/
.
/
charts
/
neutron
/
templates
/
bin
/
_nginx.sh.tpl
blob: 53418a5ecf4cf35cf6940a6f80fefeb6af789f15 [
file
] [
log
] [
blame
] [
edit
]
#!/bin/sh
set
-
xe
COMMAND
=
"${@:-start}"
start
()
{
envsubst
<
/
etc
/
nginx
/
nginx
.
conf
>
/
tmp
/
nginx
.
conf
cat
/
tmp
/
nginx
.
conf
nginx
-
t
-
c
/
tmp
/
nginx
.
conf
exec nginx
-
c
/
tmp
/
nginx
.
conf
}
stop
()
{
nginx
-
s stop
}
$COMMAND