location /v {
proxy_pass https://gs.x.sohu.com;
}
看个简单的例子, 一般为了方便我们会直接把域名写在proxy_pass的后边, 这会导致当这个域名无法解析的时候,比如机房下线了,比如第三方回源的域名被摘掉了, 导致nginx restart失败
建议的写法是:
location /v {
set $new_host "gs.x.sohu.com";
proxy_pass https://$new_host;
}
两者的不同之处在于:
1. proxy_pass直接跟域名的话, 会且只会在nginx 服务起来的时候解析一次, 失败则起不来
2. proxy_pass跟一个域名变量的话, 是调用resolver的, 跟随resolver的配置, 包括有效时间等, 有请求的时候才解析, 失败了也不影响全局服务
分类目录归档:技术
MYSQL BETWEEN的边界
If expr
is greater than or equal to min
and expr
is less than or equal to max
, BETWEEN
returns 1
, otherwise it returns 0
. This is equivalent to the expression (
min
<= expr
AND expr
<= max
)
https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html
一句话: MYSQL BETWEEN 是包含 Min 和 Max值的
Meanings of fields in /proc/net/dev?
seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
"%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
dev->name,
stats->rx_bytes,
stats->rx_packets,
stats->rx_errors,
stats->rx_dropped + stats->rx_missed_errors,
stats->rx_fifo_errors,
stats->rx_length_errors + stats->rx_over_errors +
stats->rx_crc_errors + stats->rx_frame_errors,
stats->rx_compressed,
stats->multicast,
stats->tx_bytes,
stats->tx_packets,
stats->tx_errors,
stats->tx_dropped,
stats->tx_fifo_errors,
stats->collisions,
stats->tx_carrier_errors + stats->tx_aborted_errors +
stats->tx_window_errors + stats->tx_heartbeat_errors,
stats->tx_compressed);
一张 应该载入中国史册的照片
ffmpeg剪辑视频
标准例子:
ffmpeg -i input.mp4 -ss 01:19:27 -to 02:18:51 -c copy output.mp4
这里-ss 表示开始时间, -to 表示结束时间
从开始位置截取多少时长的内容:
ffmpeg -i input.mp4 -ss 00:01:10 -t 00:01:05 -c copy output.mp4
这里引用了-t : duration 参数, 控制了截取视频的时长
那么, 以上做法有什么缺点么?
有的, 一个是慢, 一直在seeking 那个时间的样子, 另一个是画面容易在开始时候黑屏
优化方式:
ffmpeg -ss 01:19:27 -i input.mp4 -to 02:18:51 -c copy output.mp4
这里的技巧是把-ss提前了, 相当于让ffmpeg索引到关键帧, 缺点是会重置时间, 所以这里的-to 参数就相当于-t duration了
参考文档:
openssl 探测证书过期时间
true | openssl s_client -connect IP:443 -servername hostname 2>&1 | openssl x509 -noout -text -certopt no_header,no_signame,no_pubkey,no_sigdump,no_aux
这边一直都是用这个来探测证书的健康的, 在内网的使用还可以, 在公网探测中就很容易出现僵死的情况
后来在sererfault.com查到可以用timeout + 命令来解决
测试时发现”timeout 5 true | openssl …” 的管道会失败, 在公网的探测就傻兮兮的只能用了
timeout 5 openssl s_client -connect IP:443 -servername hostname 2>&1 | openssl x509 -noout -text -certopt no_header,no_signame,no_pubkey,no_sigdump,no_aux
缺点是每条指令都要等5秒, 当然, 结合多进程问题也不是太大…
直到今天, 才发现自己摆了个乌龙, 可以使用timeout 5 bash -c “true | openssl s_client… “, true可以处理实时正常结果, timeout可以处理异常结果
timeout 5 bash -c "true | openssl s_client -connect IP:443 -servername hostname 2>&1 | openssl x509 -noout -text -certopt no_header,no_signame,no_pubkey,no_sigdump,no_aux "
aws lightsail ipv6 路由问题
OS 为: amazon linux 2, 当开启ipv6.forwarding的时候, 发现路由就不通了
sysctl -w net.ipv6.conf.all.forwarding=1
#ping6 www.qq.co
connect: Network is unreachable
netstat -nr6 也能看到没有default route, 此时ipv6地址也无法被外部访问
如果关闭ipv6 forwarding, 那么就有默认路由, 也能ping通外部和被访问
::/0 fe80::7c:6bff:feef:ca54 UGDAe 1024 2 9 eth0
能看到路由有一个很特别的标志UGDAe, UpGatewayDynamicAllonlinkExpires
E(e): It maps to RTF_EXPIRES
. It means the route has a non-infinite lifetime. In this case, the kernel probably learned the route dynamically from a RA (Router Advertisement).
这个路由其实是动态广播的, 那么这个现象就跟一个参数有关了
net.ipv6.conf.interface.accept_ra
Accept Router Advertisements; autoconfigure using them.
It also determines whether or not to transmit Router Solicitations. If and only if the functional setting is to accept Router Advertisements, Router Solicitations will be transmitted.
Possible values are: 0 Do not accept Router Advertisements. 1 Accept Router Advertisements if forwarding is disabled. 2 Overrule forwarding behaviour. Accept Router Advertisements even if forwarding is enabled.
Functional default: enabled if local forwarding is disabled. disabled if local forwarding is enabled.
Nb: per interface setting (where “interface” is the name of your network interface); “all” is a special interface: changes the settings for all interfaces
默认系统这个参数是1, 当开启forwarding的时候, 不接受路由广播, 所以这个场合, 应该修改为2, Accept Router Advertisements even if forwarding is enabled.
sysctl -w net.ipv6.conf.all.forwarding=1
sysctl -w net.ipv6.conf.eth0.accept_ra=2
备注:
UP U
GATEWAY G
REJECT !
HOST H
REINSTATE R
DYNAMIC D
MODIFIED M
DEFAULT d
ALLONLINK a
ADDRCONF c
NONEXTHOP o
EXPIRES e
CACHE c
FLOW f
POLICY p
LOCAL l
MTU u
WINDOW w
IRTT i
NOTCACHED n
HTTP2 URL请求过长访问失败的问题
使用过长的url通过H2访问的时候, 容易出现请求被reset掉, 但是HTTP/1.1请求没事
TLSv1.2 (IN), TLS alert, close notify (256):
Empty reply from server
Connection #0 to host api.k.sohu.com left intact
curl: (52) Empty reply from serverClosing connection 0
打开nginx debug 日志可以看到
client sent too large header field while processing HTTP/2 connection
这是因为HTTP2有一套自己的优化参数, 主要跟两个参数有关:
http2_max_header_size 和 http2_max_field_size
http2_max_field_size 是HPACK压缩的header大小(H2的特性, 头部压缩), 默认值4k
http2_max_header_size HPACK解压后的header大小,默认16k
需要特别留意的是, 1.19.7版本以后统一使用large_client_header_buffers 来控制
这几个参数都可以根据单独server 来使用的
http://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_field_size
参考文档:
亚马逊lightsail免费期的收费项目
亚马逊的lightsail提供了3个月的免费试用, 有$3.5 $5 $10的主机选择
对于刚搬迁过来的用户可能会对一些收费不了解, 这里就我踩过的坑介绍下
来看看一份账单
这里有两个收费项目:
- snapshot的存储是收费的, 按照容量和保存时间收费
- 静态IP如果没有绑定到实例, 也是需要收取闲置费用的
当然, 使用container, database, 额外的存储/IP/镜像等, 也是收费项目
个人认为静态IP在实例被释放后没有绑定到新实例, 会是新手很容易忽略的收费陷阱
从linode迁移到亚马逊lightsail
我是linode 10多年的老用户了, 从2010年就在上边安家, 期间从fremont搬迁到东京, 又搬回来,来回折腾过几次
一开始是大熊推荐的, linode的确是海外云主机最好的选择: 因为稳定.
到了最近几年, linode变成了”稳定”的慢和移动访问”稳定”的丢包, 一言难尽
今年年初刚好发现亚马逊推出了lightsail的服务, 配置类似于EC2的t2, 可定制化更少, 但是流量包更大
对比下linode 和 lightsail的方案, 可以看到lightsail的磁盘大一些, 流量包也大一些(其实差不多, 因为aws是进出双向计算, 只有超出限额才改成output流量计费)
相比硬件配置, 网络才是让我下决心搬迁的主要原因, 我lightsail节点是新加坡的, 广州电信访问大概是46ms, 广州移动访问是45ms, 广州联通访问是88ms, 都不丢包, 划重点: 不丢包!
而linode的fremont 大概是160-180ms, 间歇性丢包, 尤其是晚上移动线路, 东京机房也差不多
这是因为亚马逊实现了跟三大运营商的直连, 而linode 没有, 这对于服务国内用户来说是一锤定音的因素, 更何况还有3个月的免费试用期
相信看到这里, 苦于linode网络的, 都已经忍不住去注册了, 这里放一下连接
https://aws.amazon.com/ 选择lightsail服务