You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
252 B
Bash
12 lines
252 B
Bash
5 years ago
|
#!/usr/bin/env sh
|
||
|
set -e
|
||
|
|
||
|
sed -i "s/es_php_fpm:/${PHP_FPM_HOST:-es_php_fpm}:/g" /etc/nginx/nginx.conf
|
||
|
|
||
|
# If first arg starts with a `-` or is empty
|
||
|
if [[ "${1#-}" != "${1}" ]] || [[ -z "${1}" ]]; then
|
||
|
set -- nginx -g 'daemon off;' "$@"
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|