闲者博客 - 宝塔 https://bk1314.com/tag/%E5%AE%9D%E5%A1%94/ zh-CN Wed, 23 Feb 2022 17:23:00 +0800 Wed, 23 Feb 2022 17:23:00 +0800 宝塔定时任务监测502就重启 https://bk1314.com/16.html https://bk1314.com/16.html Wed, 23 Feb 2022 17:23:00 +0800 飞鱼 下面代码复制在宝塔定时任务 设置shell命令 建议5分钟监测一次 56是php版本哦PHP7.2就是72

#!/bin/bash
if [[ `curl -sS --connect-timeout 15 -m 15 127.0.0.1/phpfpm_56_status|grep 502` == *"502"* ]]; then
/etc/init.d/php-fpm-56 stop
/etc/init.d/php-fpm-56 start
else
echo php56 normal.
fi
]]>
0 https://bk1314.com/16.html#comments https://bk1314.com/feed/tag/%E5%AE%9D%E5%A1%94/
宝塔单网站多PHP执行不同文件 https://bk1314.com/10.html https://bk1314.com/10.html Wed, 23 Feb 2022 16:16:00 +0800 飞鱼 [scode type="green"]下面代码放到配置文件里[/scode]

     location ~ [^/]\.php(/|$)
    {  
    # 默认调用PHP7.2
     try_files $uri =404;
    fastcgi_pass  unix:/tmp/php-cgi-72.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    include pathinfo.conf;

      # 当url中包含/qy_wmdc/则调用5.6版本
  if ($request_uri ~* "/qy_wmdc/"){

    fastcgi_pass unix:/tmp/php-cgi-56.sock;

  }   
}

宝塔配置文件替换位置

]]>
0 https://bk1314.com/10.html#comments https://bk1314.com/feed/tag/%E5%AE%9D%E5%A1%94/