2024-10-30
厉飞雨
阅读(16)
评论(0)
赞(0 )
CSRF Failed: Origin checking failed - http://3:8083 does not match any trusted origins.
![](http://static.51tbox.com/static/2024-08-29/col/d0bda693e003f85116294d81c3b98a73/5e48b2a204fe4a128...
2024-10-30
厉飞雨
阅读(29)
评论(0)
赞(5 )
Apache HTTP/2 资源管理错误漏洞(CVE-2023-44487)
2024-10-30
厉飞雨
阅读(28)
评论(0)
赞(5 )
Apache HTTP/2 资源管理错误漏洞(CVE-2023-44487)
2024-10-30
厉飞雨
阅读(25)
评论(0)
赞(4 )
request to http://ks-apiserver/oauth/token failed, reason: connect ECONNREFUSED 10.233.39.209:80
![](http://static.51tbox.com/static/2024-08-29/col/ee84d7159f5ffc0b2eab4d7fec09cdca/5a80fba8...
2024-10-30
厉飞雨
阅读(23)
评论(0)
赞(3 )
startupProbe-livenessProbe-readinessProbe-httpGet 案例
cat 28-startupProbe-livenessProbe-readinessProbe-httpGet.yaml
kind: Pod
apiVersion: v1
metadata:
name: probe-start...
2024-10-30
厉飞雨
阅读(28)
评论(0)
赞(5 )
HTTP 请求报文
=========
HTTP 请求报文由3部分组成(请求行+请求头+请求体):
![](http://static.51tbox.com/static/2024-08-29/col/ecc36407c31c1f178ea956651aa5d3e9/d7a1d5147c4148f88b4d78fb50266096.png.jpg)
下面是一个实际的请求报...
2024-10-30
厉飞雨
阅读(23)
评论(0)
赞(2 )
livenessProbe 健康检查之httpGet案例
cat 22-pods-livenessProbe-httGet.yaml
kind: Pod
apiVersion: v1
metadata:
name: baimei-dashu-httpget-001
labels:
apps: myw...
2024-10-30
厉飞雨
阅读(24)
评论(0)
赞(4 )
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Wed...
2024-10-30
厉飞雨
阅读(22)
评论(0)
赞(2 )
vim /etc/[httpd](https://51tbox.com/ "View all posts in httpd")/conf/httpd.conf
2024-10-30
厉飞雨
阅读(31)
评论(0)
赞(4 )
作为Web开发对常用http的请求头和响应头熟悉了解一下还是很有必要的。比如请求头中Content-type指定了请求的内容,若类型是 application/x-www-form-urlencoded,就可以调用reqeust的获取参数方法取到内容,若是其它都需要调用获取流的方 法获取。又比如响应头X-Frame-Options 的设置直接决定了你的页面是否能被其它非同源的i...