Advanced Activity Monitoring可用性监控进阶 Enable NGINX Open Source Stub Status启用Nginx基础监控location /stub_status { stub_status; allow 127.0.0.1; deny all; # S ...
分类:
其他好文 时间:
2020-05-25 00:20:24
阅读次数:
57
[TOC] # 简介nginx是开发中常用的web server,又可以做反向代理,另外k8s中的ingress默认使用的也是nginx,所以有必要深入了解下nginx的相关知识,及一些必要的原理知识。# 常用指令## location```location [=|~|~*|^~|@] patter... ...
分类:
其他好文 时间:
2020-05-25 00:10:12
阅读次数:
69
HTTP/2Basic Configurationserver { listen 443 ssl http2 default_server; #添加http2参数 ssl_certificate server.crt; ssl_certificate_key server.key; ...} gRP ...
分类:
Web程序 时间:
2020-05-24 16:38:48
阅读次数:
94
spring: datasource: url: jdbc:mysql://localhost:3306/lovers?serverTimezone=UTC #jdbc:mysql://localhost:3306/lovers?useUnicode=true&characterEncoding=u ...
分类:
其他好文 时间:
2020-05-24 09:34:29
阅读次数:
44
Location语法优先级排列(忽略空格) Location语法的作用可以认为是对某一个location的模糊匹配 相同的location对应的站点目录只能有一个 /a | 匹配符 | 匹配规则 | 优先级 | | : | : | : | | = | 精确匹配(默认) | 1 | | ^~N | 以 ...
分类:
其他好文 时间:
2020-05-23 09:21:45
阅读次数:
48
前面有说过在测试过程中可以截图,截图后,我们可以通过对比截图的相似度,来进行断言 本文介绍两个可以对比截图相似度的方法 方法一: from PIL import Image import math import operator from functools import reduce def im ...
分类:
其他好文 时间:
2020-05-22 21:38:40
阅读次数:
110
为记录遇到的Nginx问题:1、nginx转发到其他地址,因为server层默认配置的proxy_set_headerHost$host;需要在location层配置proxy_set_headerHost$proxy_host;location/xxx/{proxy_passhttp://www.baidu.com/;proxy_set_headerHost$proxy_host;}2、ngin
分类:
其他好文 时间:
2020-05-22 18:53:32
阅读次数:
42
window.location各属性的值 : window.location.href "https://i.cnblogs.com/EditPosts.aspx?opt=1" window.location.protocol "https:" window.location.host "i.cnb ...
Caching Zones定义缓存空间proxy_cache_path /var/nginx/cache #缓存空间路径keys_zone=CACHE:60mlevels=1:2inactive=3h #缓存时长,3小时内没有被再次请求就会被释放max_size=20g;proxy_cache CA ...
分类:
其他好文 时间:
2020-05-21 19:12:36
阅读次数:
55
按照大写的字母将name切割成两部分,并获取第二部分的值 ...
分类:
其他好文 时间:
2020-05-21 13:23:00
阅读次数:
43