//根据入参增加nginx反向代理
#!/bin/bash
#set -x
log_path="./proc/logs/shellExecute.log"
log_path_back="./proc/logs/shellExecute.log1"
nginxBasePath="/home/netnumen/ems/ums-server/utils/nginx/nginx-1.4.7"
nginxConfPath="${nginxBasePath}/conf/nginx.conf"
runNginx="${nginxBasePath}/run.sh"
stopNginx="${nginxBasePath}/stop.sh"
app=$(echo $1 | tr -d '"')
echo $app
function execLog(){
if [ "$?" -ne 0 ]
then
echo "[error] $(date "+%Y-%m-%d %H-%M-%S"), ${1}" >> $log_path
exit 1
else
echo "[info] $(date "+%Y-%m-%d %H-%M-%S"), ${1}" >> $log_path
fi
}
function CLEAN_LOG()
{
declare -i FILESIZE LIMIT
FILESIZE=0
FILESIZE=`stat -c%s ${log_path}`
LIMIT=104857600 #100M Bytes
if [ $FILESIZE -gt $LIMIT ]
then
rm -rf ${log_path_back}
mv ${log_path} ${log_path_back}
fi
}
function main(){
CLEAN_LOG
echo "************************************redirect app to rdk,update nginx*****************************************" >> $log_path
execLog "redirect appName: ${app}"
beforeInsertLocation=$(sed -n "/inside_location_end/=" ${nginxConfPath})
execLog "compute insert location num: ${beforeInsertLocation}"
let beforeInsertLocation=beforeInsertLocation-1
execLog "compute before insert location num: ${beforeInsertLocation}"
insertContent="if (\$uri ~ ^/${app}/){ proxy_pass http://localhost:5812; break; }"
execLog "add content: ${insertContent}"
existLocation=$(sed -n "/if (\$uri ~ ^\/${app}\/){ proxy_pass http:\/\/localhost:5812; break; }/=" ${nginxConfPath})
execLog "insert url existed?location: ${existLocation}"
if [ ! -n "$existLocation" ];then
sed -i "${beforeInsertLocation}a\ ${insertContent}" ${nginxConfPath}
nohup $stopNginx;$runNginx &
fi
execLog "sed app url redirt content!"
}
main
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 电商平台中订单未支付过期如何实现自动关单?
· 用 .NET NativeAOT 构建完全 distroless 的静态链接应用
· 为什么构造函数需要尽可能的简单
· 探秘 MySQL 索引底层原理,解锁数据库优化的关键密码(下)
· 大模型 Token 究竟是啥:图解大模型Token
· 瞧瞧别人家的限流,那叫一个优雅!
· 1.net core 工作流WorkFlow流程(介绍)
· 一文彻底搞懂 MCP:AI 大模型的标准化工具箱
· 面试官:如果某个业务量突然提升100倍QPS你会怎么做?
· 短信接口被刷爆:我用Nginx临时止血