您最多选择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;'
|