nginx nginx配置https,重定向后https变成了http
nginx配置https如下 nginx 后面应用是对应的tomcat应用 server { listen 80; server_name xxxx.com; rewrite ^(.*) https://$server_name$1 permanent; } server...
nginx 详解NGINX访问https跳转到http的解决方法
问题:浏览器打开http://www.zzvips.com/aaa.html,然后跳转到//www.zzvips.com/aaa.html 网站架构:用户--https--->nginx代理---http---->tomcat/nginx+php nginx待遇发给后端的请求...
解决RabbitMQ安装后127.0.0.1:15672控制台打不开,无法访问的问题
没有安装Erlang或缺少系统环境变量配置 RabbitMQ依赖于Erlang环境,其底层通过Erlang语言实现。需要下载安装Erlang及配置环境变量,具体操作步骤请参考:http://blog.csdn.net/MaYuKang/arti...
spring Springboot 整合RabbitMq ,用心看完这一篇就够了
转自:https://blog.csdn.net/qq_35387940/article/details/100514134 该篇文章内容较多,包括有rabbitMq相关的一些简单理论介绍,provider消息推送实例,consumer消息消费实例,Direct、Top...
spring Spring Boot整合RabbitMQ
转自:https://www.cnblogs.com/lusaisai/p/13019822.html 在Spring项目中,可以使用Spring-Rabbit去操作RabbitMQ https://github.com/spring-projects/spring-amqp 尤其是...
reply-code=530, reply-text=NOT_ALLOWED - vhost / not found, class-id=10, method-id=40
springboot 项目在启动项目时,报链接rabbitmq报错 Caused by: com.rabbitmq.client.ShutdownSignalException: connection error; protocol method: #method<connection.close>(reply-...
spring springboot项目下WebSocket+RabbitMq的搭建
springboot 分布式 项目下WebSocket+RabbitMq的搭建 本文仅仅是个人工作上用到的知识点的备忘笔记 前提:支持RabbitMq运行的环境 在搭建rabbitmq之前,得先搭建他的运行环境,传送阵法biubi...
redis Redis 模糊查询删除操作
创建一条测试 数据 查询 (默认是 DB 0 ) 创建:set name xiaoming 查询: get name 1、模糊搜索查询 (redis 默认有16个DB , 0-15 ) Redis 模糊搜索 1、keys * 匹配数据库...
用Gson实现json与对象、list集合之间的相互转化
/1.把json转化为一个类对象 String jsonData="{'userid':'1001','username':'张三','usersex':'男','banji':'计算机班','phone':'1008623232'}"; Gson gson=new Gson(); Person pers...