摘要:
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 阅读全文
摘要:
解决方案: 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 阅读全文
摘要:
参考:https://gitee.com/Tinywan/dnmp 拉取代码 git clone https://gitee.com/Tinywan/dnmp.git cd dnmp 新建配置文件 cp env.example .env 修改.env,对应共享目录 SOURCE_SHARE_DIR= 阅读全文
摘要:
官方文档:https://www.easywechat.com/docs/4.x/overview 安装插件 # Laravel < 5.8 composer require "overtrue/laravel-wechat:~4.0" # Laravel >= 5.8 composer requi 阅读全文
摘要:
下载镜像: 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 阅读全文
摘要:
1、启动 MongoDB docker run -d --name mongo-yapi mongo 2、获取 Yapi 镜像,版本信息可在 阿里云镜像仓库 查看 docker pull registry.cn-hangzhou.aliyuncs.com/anoy/yapi 3、初始化 Yapi 数 阅读全文
摘要:
Tarsphp节点默认线程数为5,如果请求数多的话会造成请求阻塞,一直等待的情况,修改节点线程数界面如下: 阅读全文
摘要:
sudo docker ps -a -q // 查看所有容器ID sudo docker stop $(sudo docker ps -a -q) // stop停止所有容器 sudo docker rm $(sudo docker ps -a -q) // remove删除所有容器 一次性停止删除 阅读全文
摘要:
mysql数据库binlog日志太大的清理方法 1.查看binlog日志 mysql> show binary logs; + + + | Log_name | File_size | + + + | mysql-bin.000061 | 50624 | | mysql-bin.000062 | 5 阅读全文
摘要:
查看centos磁盘情况 df -h cd 进入对应目录后 du -h -x --max-depth=1 查找大文件(大于1000M)路径 s -lh $(find / -type f -size +1000M) 或 du -sh /* | sort -nr 显示G M K 大文件夹 并排序 fin 阅读全文