chrony 同步系统时间

chrony 配置文件使用腾讯外网ntp grep tencent /etc/chrony.conf -A 2 -B 2 # Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). server ntp1.tencent.com iburst server ntp2.tencent.com iburst server ntp3.tencent.com iburst server ntp4.tencent.com iburst server ntp5.tencent.com iburst # Record the rate at which the system clock gains/losses time.

Published
Categorized as linux

Http Headers 文档地址

HTTP 标头(header)允许客户端和服务器通过 HTTP 请求(request)或者响应(response)传递附加信息。 一个 HTTP 标头由它的名称(不区分大小写)后跟随一个冒号(:),冒号后跟随它具体的值。 http 请求头 快速查询.

Published
Categorized as web

查找spring可配置项

spring 配置文件有哪些可配置项, 可以从官网查询 https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html

Published
Categorized as java, web