摘要: 一,官网地址 https://www.prometheus.io/download/ 如图: 二,下载 通过wget从命令行下载: [root@web prometheus]# wget https://github.com/prometheus/node_exporter/releases/dow 阅读全文
posted @ 2024-10-28 17:53 刘宏缔的架构森林 阅读(268) 评论(0) 推荐(0)
摘要: 一,官方下载地址: https://www.prometheus.io/download/ 如图: 二,下载 用wget从命令行下载 [root@backup prometheus]# wget https://github.com/prometheus/prometheus/releases/do 阅读全文
posted @ 2024-10-28 17:11 刘宏缔的架构森林 阅读(232) 评论(0) 推荐(0)
摘要: 一,nginx配置:只允许get/post方法访问 配置规则: location / { if ($request_method !~ ^(GET|POST)$ ) { return 403; } ... } 效果:使用PUT等非GET/POST方法 二,modsecurity配置: 只允许get/ 阅读全文
posted @ 2024-10-28 10:42 刘宏缔的架构森林 阅读(446) 评论(0) 推荐(0)