上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 使用国内 daocloud 一键安装命令: curl -sSL https://get.daocloud.io/docker | sh 1.停止docker服务systemctl stop docker2.创建新的docker目录,执行命令df -h,找一个大的磁盘如在 /opt目录下面建了/opt 阅读全文
posted @ 2021-05-10 10:47 佚小名 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: /etc/sysconfig/iptables #ptables-save v1.4.7 on Thu Mar 2 00:52:21 2017 *filter :INPUT DROP [0:0] :FORWARD DROP [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -i 阅读全文
posted @ 2021-05-10 10:42 佚小名 阅读(49) 评论(0) 推荐(0) 编辑
摘要: server { listen 127.0.0.1:80; server_name demo.test.cn; try_files $uri $uri/ /index.html; location / { proxy_pass http://192.168.1.130:8080/; server_n 阅读全文
posted @ 2021-03-30 15:59 佚小名 阅读(2498) 评论(1) 推荐(0) 编辑
摘要: 解决方案: location /wechat_sroa { proxy_pass http://127.0.0.1:8080/wechat_sroa/; server_name_in_redirect off; proxy_set_header Host $host; proxy_set_heade 阅读全文
posted @ 2021-03-16 16:25 佚小名 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 参考:https://gitee.com/Tinywan/dnmp 拉取代码 git clone https://gitee.com/Tinywan/dnmp.git cd dnmp 新建配置文件 cp env.example .env 修改.env,对应共享目录 SOURCE_SHARE_DIR= 阅读全文
posted @ 2021-03-15 15:53 佚小名 阅读(754) 评论(0) 推荐(0) 编辑
摘要: 官方文档:https://www.easywechat.com/docs/4.x/overview 安装插件 # Laravel < 5.8 composer require "overtrue/laravel-wechat:~4.0" # Laravel >= 5.8 composer requi 阅读全文
posted @ 2021-03-12 16:03 佚小名 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: 下载镜像: docker pull nginx docker pull php:7.4-fpm 启动nginx镜像: docker run --network host --name mynginx \ -v /mnt/hgfs/www:/www \ -v /mnt/hgfs/www/vm_ngin 阅读全文
posted @ 2021-03-11 14:38 佚小名 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 1、启动 MongoDB docker run -d --name mongo-yapi mongo 2、获取 Yapi 镜像,版本信息可在 阿里云镜像仓库 查看 docker pull registry.cn-hangzhou.aliyuncs.com/anoy/yapi 3、初始化 Yapi 数 阅读全文
posted @ 2021-03-06 18:12 佚小名 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Tarsphp节点默认线程数为5,如果请求数多的话会造成请求阻塞,一直等待的情况,修改节点线程数界面如下: 阅读全文
posted @ 2021-01-12 17:41 佚小名 阅读(101) 评论(0) 推荐(0) 编辑
摘要: sudo docker ps -a -q // 查看所有容器ID sudo docker stop $(sudo docker ps -a -q) // stop停止所有容器 sudo docker rm $(sudo docker ps -a -q) // remove删除所有容器 一次性停止删除 阅读全文
posted @ 2021-01-12 17:30 佚小名 阅读(198) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页