6 lines
97 B
Bash
6 lines
97 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd /etc/nginx/
|
||
|
envsubst '$BACKEND_URL' < nginx.conf.template > nginx.conf
|
||
|
exec "$@"
|