企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
第一步:登录宝塔,【软件商店】找到php7.4,点击设置,【安装扩展】找到 swoole,点击安装 ![](https://img.kancloud.cn/4c/14/4c141102f71d7e2baa7c8f399e3eb377_1001x559.png) # 第二步:找到站点域名,点击【设置】-【配置文件】,输入以下代码,添加一个新的,之前的不能删除 location /mobile/driverOrder { if (!-e $request_filename) { proxy_pass http://127.0.0.1:9505; } proxy_pass http://127.0.0.1:9505; # proxy_redirect http:// https://; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Port $server_port; proxy_set_header X-Forwarded-Proto $scheme; } ![](https://img.kancloud.cn/9b/b1/9bb16bf928b94816fec1ae38b1a73e4e_1299x641.png) ![](https://img.kancloud.cn/89/92/899276e08b72461fb92a72d6bcfe538f_745x561.png) # 第三步:点击【安全】,点击添加端口9505或者直接输入端口信息9505,点击放行 ![](https://img.kancloud.cn/a9/74/a974c57f58067fbc96b2c626fd3ff74a_905x499.png) ![](https://img.kancloud.cn/d6/69/d669ba7ab899131eabadba4d815b7de2_838x403.png) # 第四步:回到站点,点击目录进入,找到【终端】,输入(或粘贴) nohup /www/server/php/74/bin/php think swoole & 回车 如下图所示: ![](https://img.kancloud.cn/21/8e/218e30d6a121142ec173b185d123510d_947x468.png) ![](https://img.kancloud.cn/cc/24/cc2415385d2adf530cf4d6866ec93038_722x435.png) ![](https://img.kancloud.cn/d9/49/d949c80c2285dbe4decfa5aba0f00980_935x355.png) # 回车后,如下图所示 ![](https://img.kancloud.cn/9c/6e/9c6e96c4559e1c9f4d02cbe89af004b1_1050x480.png) # 如果不确定是否配置好了,可以在输入 ps -ef|grep swoole 或关闭终端重新打开再输入ps -ef|grep swoole回车,出现下图的样式说明执行成功 ![](https://img.kancloud.cn/a4/ea/a4ea21a25a12ac1aee14d53b724e4aa0_1069x418.png) # 最后,如果站点选择的版本不是php7.4的,需要点击站点设置,php版本改成7.4的 ![](https://img.kancloud.cn/2e/24/2e2410ddb5e603701a8a89f597ff9334_550x419.png)