選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

run 233B

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;'