blob: 53418a5ecf4cf35cf6940a6f80fefeb6af789f15 [file] [log] [blame]
Mohammed Naserf3f59a72023-01-15 21:02:04 -05001#!/bin/sh
2set -xe
3
4COMMAND="${@:-start}"
5
6start () {
7 envsubst < /etc/nginx/nginx.conf > /tmp/nginx.conf
8 cat /tmp/nginx.conf
9 nginx -t -c /tmp/nginx.conf
10 exec nginx -c /tmp/nginx.conf
11}
12
13stop () {
14 nginx -s stop
15}
16
17$COMMAND