您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  1. #!/bin/sh
  2. [[ -f ./setup ]] && source ./setup
  3. if ! nginx -q -t -c /etc/nginx/nginx.conf; then
  4. echo "Bad nginx configuration file"
  5. exit 1
  6. fi
  7. exec 2>&1 # pipe stderr to stdout
  8. exec nginx -c /etc/nginx/nginx.conf -g 'daemon off;'