您的位置:首页 > 科技 > 能源 > 电商营销是什么意思_宽带业务如何推广_全国疫情最新名单_口碑营销ppt

电商营销是什么意思_宽带业务如何推广_全国疫情最新名单_口碑营销ppt

2024/10/31 11:34:06 来源:https://blog.csdn.net/qq_41917355/article/details/143133563  浏览:    关键词:电商营销是什么意思_宽带业务如何推广_全国疫情最新名单_口碑营销ppt
电商营销是什么意思_宽带业务如何推广_全国疫情最新名单_口碑营销ppt

nginx exporter 配置

docker compose 中的配置

开启 nginx 状态页

server {listen 8080;server_name localhost;location /stub_status {stub_status;access_log off;#allow 172.31.0.0/16;#deny all;}
}

nginx 镜像,挂载配置

nginx:image: nginx:1.22.1volumes:- ./nginx/stub_status-server.conf:/etc/nginx/conf.d/stub_status-server.conf:ronetworks:- monitoringexpose:- 8080- 80ports:- 80:80

nginx-exporter

nginx-exporter:image: nginx/nginx-prometheus-exporter:0.11command:- '-nginx.scrape-uri=http://nginx:8080/stub_status'networks:- monitoringports:- '9113:9113'depends_on:- nginx

k8s 中的配置

nginx 的配置

apiVersion: apps/v1
kind: Deployment
metadata:name: nginx
spec:replicas: 1selector:matchLabels:app: nginxtemplate:metadata:labels:app: nginxspec:containers:- name: nginximage: nginx:1.22.1ports:- containerPort: 80volumeMounts:- mountPath: /etc/nginx/conf.d/stub_status-server.confsubPath: stub_status-server.confname: nginx-config- name: nginx-exporterimage: nginx/nginx-prometheus-exporter:0.11args:- "-nginx.scrape-uri=http://127.0.0.1:8080/nginx_status"ports:- containerPort: 9113volumes:- name: nginx-configconfigMap:name: nginx-config
---
apiVersion: v1
kind: ConfigMap
metadata:name: nginx-config
data:stub_status-server.conf: |# 这里是上面展示的 NGINX 配置server {# 监听 80 端口访问会报 404,换成 8080 端口就可以。listen 8080;location /nginx_status {stub_status on;access_log off;allow 127.0.0.1;deny all;}}---
apiVersion: v1
kind: Service
metadata:name: nginx-service
spec:selector:app: nginxports:- protocol: TCPport: 80targetPort: 80

在 Nginx 配置中,可能有多个原因导致/nginx_status路径在端口80上无法正常工作。其中一个原因是:

  • 端口冲突或者重写规则
    如果你在 Nginx 中有其它配置或者虚拟主机,也在监听端口 80,并且这些配置没有正确定义/nginx_status路径,可能会导致请求被其他配置截获,从而返回 404 错误。
    解决方法:
    确保stub_status配置文件是唯一在端口 80 上处理 /nginx_status请求的配置,或者明确定义其它服务器块不处理此路径。

产生 404 的原因是被 nginx 原有的 location 拦截了,去 /usr/share/nginx/html 目录下找 nginx_status 文件了。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com