2021-04-07 09:19:06 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
## Generate nginx config files from templates,
|
|
|
|
## with environment variables substituted
|
|
|
|
|
|
|
|
nginx_dir='/etc/nginx'
|
|
|
|
nginx_templates_dir="${nginx_dir}/templates"
|
|
|
|
|
|
|
|
if ! [ -d "${nginx_templates_dir}" ]; then
|
|
|
|
echo "Nginx: no template directory found, skipping"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
nginx_template_file="${nginx_templates_dir}/nginx.conf.template"
|
|
|
|
nginx_config_file="${nginx_dir}/nginx.conf"
|
|
|
|
|
|
|
|
if [ -f "${nginx_template_file}" ]; then
|
2023-02-02 04:42:07 -05:00
|
|
|
export NGINX_KEEPALIVE_TIMEOUT="${NGINX_KEEPALIVE_TIMEOUT:-65}"
|
2021-04-07 09:19:06 -04:00
|
|
|
export NGINX_WORKER_CONNECTIONS="${NGINX_WORKER_CONNECTIONS:-768}"
|
2023-02-02 04:42:07 -05:00
|
|
|
export NGINX_WORKER_PROCESSES="${NGINX_WORKER_PROCESSES:-4}"
|
2021-04-07 09:19:06 -04:00
|
|
|
|
|
|
|
echo "Nginx: generating config file from template"
|
|
|
|
|
|
|
|
# Note the single-quotes, they are important.
|
|
|
|
# This is a pass-list of env-vars that envsubst
|
|
|
|
# should operate on.
|
2023-02-02 04:42:07 -05:00
|
|
|
envsubst '
|
|
|
|
${NGINX_KEEPALIVE_TIMEOUT}
|
|
|
|
${NGINX_WORKER_CONNECTIONS}
|
|
|
|
${NGINX_WORKER_PROCESSES}
|
|
|
|
' \
|
2021-04-07 09:19:06 -04:00
|
|
|
< "${nginx_template_file}" \
|
|
|
|
> "${nginx_config_file}"
|
|
|
|
|
2024-02-12 07:50:22 -05:00
|
|
|
echo "Checking Nginx config"
|
|
|
|
nginx -t
|
|
|
|
|
2021-04-07 09:19:06 -04:00
|
|
|
echo "Nginx: reloading config"
|
|
|
|
service nginx reload
|
|
|
|
fi
|