mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-09 01:36:42 +02:00
9 lines
213 B
Bash
9 lines
213 B
Bash
#!/bin/sh
|
|
if [ -z "${CP_APP_HOSTNAME}" ]
|
|
then
|
|
echo "CP_APP_HOSTNAME is empty, using default"
|
|
CP_APP_HOSTNAME="app"
|
|
fi
|
|
|
|
sed -i "s/CP_APP_HOSTNAME/${CP_APP_HOSTNAME}/" /etc/nginx/nginx.conf
|
|
nginx -g "daemon off;"
|