You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
299 B
11 lines
299 B
#!/bin/bash
|
|
|
|
export NGINX_PORT=${NGINX_PORT:-80}
|
|
|
|
export NGINX_MAX_BODY_SIZE=${NGINX_MAX_BODY_SIZE:-1024m}
|
|
|
|
export API_SERVER=${API_SERVER:-http://shuili-admin}
|
|
|
|
envsubst '${NGINX_PORT},${NGINX_MAX_BODY_SIZE},${API_SERVER}' < nginx.conf.tmpl > /etc/nginx/nginx.conf
|
|
nginx -t
|
|
nginx -g "daemon off;"
|
|
|