From ea2f444c53d960b24aefa0416a2a9faa962263a5 Mon Sep 17 00:00:00 2001 From: hanhh Date: Thu, 1 Jul 2021 21:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dcurl=20proxy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shell/api.sh | 12 ++++++------ shell/check.sh | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/shell/api.sh b/shell/api.sh index d2c1d410..d9bebf94 100755 --- a/shell/api.sh +++ b/shell/api.sh @@ -17,7 +17,7 @@ add_cron_api() { fi local api=$( - curl -s "http://localhost:5600/api/crons?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/crons?t=$currentTimeStamp" \ -H "Accept: application/json" \ -H "Authorization: Bearer $token" \ -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36" \ @@ -52,7 +52,7 @@ update_cron_api() { fi local api=$( - curl -s "http://localhost:5600/api/crons?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/crons?t=$currentTimeStamp" \ -X 'PUT' \ -H "Accept: application/json" \ -H "Authorization: Bearer $token" \ @@ -84,7 +84,7 @@ update_cron_command_api() { fi local api=$( - curl -s "http://localhost:5600/api/crons?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/crons?t=$currentTimeStamp" \ -X 'PUT' \ -H "Accept: application/json" \ -H "Authorization: Bearer $token" \ @@ -109,7 +109,7 @@ del_cron_api() { local ids=$1 local currentTimeStamp=$(date +%s) local api=$( - curl -s "http://localhost:5600/api/crons?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/crons?t=$currentTimeStamp" \ -X 'DELETE' \ -H "Accept: application/json" \ -H "Authorization: Bearer $token" \ @@ -133,7 +133,7 @@ del_cron_api() { get_user_info() { local currentTimeStamp=$(date +%s) local api=$( - curl -s "http://localhost:5600/api/user?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/user?t=$currentTimeStamp" \ -H 'Accept: */*' \ -H "Authorization: Bearer $token" \ -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36' \ @@ -153,7 +153,7 @@ update_cron_status() { local status=$2 local currentTimeStamp=$(date +%s) local api=$( - curl -s "http://localhost:5600/api/crons/status?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/crons/status?t=$currentTimeStamp" \ -X 'PUT' \ -H "Accept: application/json" \ -H "Authorization: Bearer $token" \ diff --git a/shell/check.sh b/shell/check.sh index 7e75b57d..85b75926 100644 --- a/shell/check.sh +++ b/shell/check.sh @@ -64,7 +64,7 @@ check_nginx() { } check_ql() { - local api=$(curl -s "http://localhost:5700") + local api=$(curl -s --noproxy "*" "http://localhost:5700") echo -e "\n=====> 检测面板\n\n$api\n" if [[ $api =~ "
" ]]; then echo -e "=====> 面板服务启动正常\n" @@ -78,7 +78,7 @@ check_pm2() { pm2_log local currentTimeStamp=$(date +%s) local api=$( - curl -s "http://localhost:5600/api/user?t=$currentTimeStamp" \ + curl -s --noproxy "*" "http://localhost:5600/api/user?t=$currentTimeStamp" \ -H 'Accept: */*' \ -H "Authorization: Bearer $token" \ -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36' \