前言 本地Docker部署Pulsar消息代理实现消息发布和消息订阅 介绍 相关概念,后面有时间再花时间整理下。 实践步骤 1.使用dokcer本地部署pulsar docker run -it \ -p 6650:6650 \ -p 8080:8080 \ --mount source=pulsa ...
分类:
其他好文 时间:
2021-05-24 09:51:07
阅读次数:
0
安装nginx 1 sudo apt-get install -y nginx 修改配置文件 1 vi /etc/nginx/nginx.conf 2 #注释掉下面这行代码 3 #include /etc/nginx/sites-enabled/*; 4 #保存 在/etc/nginx/conf.d ...
分类:
系统相关 时间:
2021-05-24 09:40:00
阅读次数:
0
nginx version: openresty/1.19.3.1 built by gcc 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC) built with OpenSSL 1.1.1h 22 Sep 2020 (running with OpenSSL 1.1. ...
分类:
其他好文 时间:
2021-05-24 09:34:56
阅读次数:
0
HttpServletRequest 获取用户真实IP地址 https://www.cnblogs.com/Mauno/p/Mauno.html 原因: 当我们通过request获取客户端IP时,自身服务器通常会为了保护信息或者负载均衡的目的,对自身服务器做反向代理。此时如果我们通过request. ...
分类:
Web程序 时间:
2021-05-24 09:34:35
阅读次数:
0
修改php-fpm.conf security.limit_extensions = .php .html 查看php-fpm.conf内listen,如果是端口则nginx.conf server内容为 location ~ \.php|\.html(.*)$ { fastcgi_pass 127 ...
分类:
Web程序 时间:
2021-05-24 09:26:26
阅读次数:
0
Vue页面template <template> <div> <canvas style="width: 80%!important;height: auto!important;" id="canvas"></canvas> <br/>{{charId}} </div> </template> V ...
分类:
Web程序 时间:
2021-05-24 09:24:28
阅读次数:
0
1、什么是 nginx 高可用 (1)需要两台 nginx 服务器 (2)需要 keepalived (3)需要虚拟 ip 2、配置高可用的准备工作(1)需要两台服务器 192.168.17.129 和 192.168.17.131 (2)在两台服务器安装 nginx (3)在两台服务器安装 kee ...
分类:
其他好文 时间:
2021-05-24 08:39:55
阅读次数:
0
1、什么是动静分离 Nginx 动静分离简单来说就是把动态跟静态请求分开,不能理解成只是单纯的把动态页面和静态页面物理分离。严格意义上说应该是动态请求跟静态请求分开,可以理解成使用 Nginx 处理静态页面,Tomcat 处理动态页面。动静分离从目前实现角度来讲大致分为两种,一种是纯粹把静态文件独立 ...
分类:
其他好文 时间:
2021-05-24 08:24:01
阅读次数:
0
设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:
其他好文 时间:
2021-05-24 08:22:53
阅读次数:
0
反向代理实例二 实现效果:使用 nginx 反向代理,根据访问的路径跳转到不同端口的服务中nginx 监听端口为 9001, 访问 http://127.0.0.1:9001/dev/ 直接跳转到 127.0.0.1:8081访问 http://127.0.0.1:9001/test/ 直接跳转到 ...
分类:
其他好文 时间:
2021-05-24 08:12:32
阅读次数:
0