選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
1234567891011 |
- #!/bin/sh
-
- [[ -f ./setup ]] && source ./setup
-
- if ! nginx -q -t -c /etc/nginx/nginx.conf; then
- echo "Bad nginx configuration file"
- exit 1
- fi
-
- exec 2>&1 # pipe stderr to stdout
- exec nginx -c /etc/nginx/nginx.conf -g 'daemon off;'
|