摘要:
1 2 3 projectName="你的项目名" 4 5 #提醒功能 6 help() { 7 echo "help: sh ${projectName}.sh [start|stop|restart]" 8 exit 1 9 } 10 11 #判断项目是否运行,并且返回对应数字(0 为未启动 1 阅读全文
摘要:
nginx conf 配置 upstream t****.com { server localhost:9041;} server { listen 80; server_name t****.com;#域名 return 301 https://$server_name$request_uri;} 阅读全文