摘要: 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 阅读全文
posted @ 2022-10-08 16:36 深水是沉默 阅读(658) 评论(0) 推荐(0) 编辑
摘要: nginx conf 配置 upstream t****.com { server localhost:9041;} server { listen 80; server_name t****.com;#域名 return 301 https://$server_name$request_uri;} 阅读全文
posted @ 2022-10-08 16:27 深水是沉默 阅读(113) 评论(0) 推荐(0) 编辑