专注 K8S研究
发布时间:2018-08-21 11:12:38
原文地址:http://blog.sina.com.cn/s/blog_56d8ea900101hlhv.html情况说明nginx配置https,tomcat正常http接受nginx转发。nginx 代理https后,(java代码redirect地址)应用redirect https变成http情况类似http://2hei.net/mt/2010/02/request-getscheme-cannt-get-https.htmlhttp://yywudi.info/nginx-https-.........【阅读全文】
发布时间:2018-08-21 11:02:48
记得在之前的一篇文章中介绍了nginx反向代理https的方法,今天这里介绍下haproxy代理https的方法:第一种方式:haproxy服务器本身提供ssl证书 配置参数(修改haproxy.cfg文件)backend web_server mode http balance roundrobin cookie SERVERID insert indirect nocache&nb.........【阅读全文】
发布时间:2018-08-20 23:46:31
Nginx配置文件:/etc/nginx/conf.d/*.conf常见的301跳转设置方法:一、if ($scheme = http ) { return 301 https://$host$request_uri;}二、server_name 8jieke.com ;rewrite ^(.*) https://8jieke.com$1 permanent三、if ($server_port = 80 ) { return 301 https://$host$request_uri;}.........【阅读全文】
发布时间:2018-08-09 13:08:28
[root@linux-node2 ~]# yum install -y nginx[root@linux-node2 ~]# vim /etc/nginx/nginx.conf location /nginx_status { &nb.........【阅读全文】