12 lines
169 B
Bash
12 lines
169 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ ! -f .env ]; then
|
||
|
echo "Please create a .env file"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
source .env
|
||
|
|
||
|
|
||
|
envsubst < ./nginx/default.conf.tpl > ./nginx/default.conf
|