mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2026-04-23 00:27:05 +08:00
11 lines
247 B
Bash
11 lines
247 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Init vars
|
|
if [[ -z "$SERVICE_NGINX_OPTS" ]]; then SERVICE_NGINX_OPTS=""; fi
|
|
|
|
source /opt/docker/bin/config.sh
|
|
|
|
includeScriptDir "/opt/docker/bin/service.d/nginx.d/"
|
|
|
|
exec /usr/sbin/nginx -g 'daemon off;' $SERVICE_NGINX_OPTS
|