随笔分类 -  nginx

摘要:转载自:https://www.bilibili.com/read/cv16151784?spm_id_from=333.999.0.0 1.引言 1.1 目的 为了更好的指导部署与测试艺术升系统nginx网站服务器高性能同时下安全稳定运行,需要对nginx服务进行调优与加固; 本次进行Nginx服 阅读全文
posted @ 2022-07-07 10:11 哈喽哈喽111111 阅读(1426) 评论(0) 推荐(0) 编辑
摘要:转载自:https://www.bilibili.com/read/cv16150654?spm_id_from=333.999.0.0 0x01 Nginx 常用模块使用实践 官方模块使用手册:http://nginx.org/en/docs/ ngx_http_core_module - 核心模 阅读全文
posted @ 2022-07-07 10:03 哈喽哈喽111111 阅读(181) 评论(0) 推荐(0) 编辑
摘要:转载自:https://www.bilibili.com/read/cv16150010?spm_id_from=333.999.0.0 0x00 编译实践 描述:在企业线上生产环境中推荐进行Nginx编译安装,可以按照业务侧重点进行相应 Nginx 编译参数配置,所以编译参数不是功能加的越多越好, 阅读全文
posted @ 2022-07-07 09:58 哈喽哈喽111111 阅读(358) 评论(0) 推荐(0) 编辑
摘要:转载自:https://www.bilibili.com/read/cv16149433?spm_id_from=333.999.0.0 方式1: 轮询 RR(默认轮询)每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉能自动剔除。 upstream test { server 阅读全文
posted @ 2022-07-07 09:45 哈喽哈喽111111 阅读(856) 评论(0) 推荐(0) 编辑
摘要:转载自:https://www.bilibili.com/read/cv16067729?spm_id_from=333.999.0.0 0x02 HTTPS安全加固指南 描述: 当你的网站上了 HTTPS 以后,可否觉得网站已经安全了,其实不然前面说过想要部署TLS是非常容易,只需要证书与密钥文件 阅读全文
posted @ 2022-07-07 09:33 哈喽哈喽111111 阅读(336) 评论(0) 推荐(0) 编辑
摘要:# jar包封装成docker镜像启动 docker run -d -v /var/log/xxx:/var/log/xxx --restart=always --network host --name name aa:5000/xxx:latest https://xxx.xxxx.com/xxx 阅读全文
posted @ 2022-07-05 09:09 哈喽哈喽111111 阅读(431) 评论(0) 推荐(0) 编辑
摘要:文章转载自:https://blog.csdn.net/wzj_110/article/details/110142902 正则表达式在线测试工具:https://tool.lu/regex location中的正则表达式 location的作用 location指令的作用是根据'用户请求的URI' 阅读全文
posted @ 2022-05-20 15:07 哈喽哈喽111111 阅读(1126) 评论(2) 推荐(0) 编辑
摘要:#直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。 #这里是直接转发给后端应用服务器了,也可以是一个静态首页 # 第一个必选规则 location = / { #proxy_pass http://tomcat:8080/index root /xxx; index i 阅读全文
posted @ 2022-05-20 11:44 哈喽哈喽111111 阅读(112) 评论(0) 推荐(0) 编辑
摘要:转载自:https://mp.weixin.qq.com/s/e-_PUNolUm22-Uy_ZjpuEA systemd 介绍 systemd是目前Linux系统上主要的系统守护进程管理工具,由于init一方面对于进程的管理是串行化的,容易出现阻塞情况,另一方面init也仅仅是执行启动脚本,并不能 阅读全文
posted @ 2022-05-18 13:33 哈喽哈喽111111 阅读(328) 评论(0) 推荐(0) 编辑
摘要:文章转载自:https://www.xaheimi.com/jianzhan/117.html 什么是Content Secruity Policy(CSP) CSP全称Content Security Policy ,可以直接翻译为内容安全策略,说白了,就是为了页面内容安全而制定的一系列防护策略. 阅读全文
posted @ 2022-05-17 12:03 哈喽哈喽111111 阅读(9370) 评论(0) 推荐(0) 编辑
摘要:文章转载自:https://mp.weixin.qq.com/s/NuTmEUQU5L69is53bCauKA Nginx 中配置前端的 gzip 压缩,有两种思路: Nginx 动态压缩,静态文件还是普通文件,请求来了再压缩,然后返回给前端。 Nginx 静态压缩,提前把文件压缩成 .gz 格式, 阅读全文
posted @ 2022-05-16 18:02 哈喽哈喽111111 阅读(864) 评论(0) 推荐(0) 编辑
摘要:Nginx在1.9.0版本开始支持tcp模式的负载均衡,在1.9.13版本开始支持udp协议的负载,udp主要用于DNS的域名解析,其配置方式和指令和http 代理类似,其基于ngx_stream_proxy_module模块实现tcp负载,另外基于模块ngx_stream_upstream_mod 阅读全文
posted @ 2022-03-18 16:09 哈喽哈喽111111 阅读(626) 评论(0) 推荐(0) 编辑
摘要:文章转载自:https://me.jinchuang.org/archives/114.html ,有修改 步骤总结 1.安装好nginx,假设其html根路径为/usr/share/nginx/html 2.准备工作:关闭防火墙,关闭selinux,安装epel源 3.yum安装依赖包:dh-au 阅读全文
posted @ 2021-11-23 15:58 哈喽哈喽111111 阅读(1362) 评论(1) 推荐(0) 编辑
摘要:1.nginx 设置 location /promethues/ { proxy_pass http://10.xx.xxx.55:9090/prometheus/; } 2.设置prometheus子路径 在启动的时候根据命令行的参数来进行子路径设置。 ./prometheus --web.ext 阅读全文
posted @ 2021-11-20 14:09 哈喽哈喽111111 阅读(803) 评论(0) 推荐(0) 编辑
摘要:此文章废弃,参考另一篇 参考网址: https://me.jinchuang.org/archives/114.html https://www.cnblogs.com/jinchuang/p/14200587.html https://hub.docker.com/r/ipyker/fcgiwra 阅读全文
posted @ 2021-11-19 13:25 哈喽哈喽111111 阅读(685) 评论(0) 推荐(0) 编辑
摘要:官方文旦地址:https://grafana.com/tutorials/run-grafana-behind-a-proxy/ 一级路径 只需要修改nginx配置文件 # this is required to proxy Grafana Live WebSocket connections. m 阅读全文
posted @ 2021-11-09 14:55 哈喽哈喽111111 阅读(3168) 评论(0) 推荐(0) 编辑