nginx安装监控设置反向代理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx安装监控设置反向代理相关的知识,希望对你有一定的参考价值。

#监控
location /status {
stub_status on;
access_log off;
}

#代理
location / {
proxy_pass http://10.1.2.170:8081/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

#linux 重新编译
./configure --with-http_stub_status_module
make
make install













以上是关于nginx安装监控设置反向代理的主要内容,如果未能解决你的问题,请参考以下文章

安装Nginx并为node.js设置反向代理

Nginx http 反向代理设置

Nginx配置——单域名反向代理多个端口

Nginx-8.nginx反向代理监控虚拟IP地址

Nginx 如何设置反向代理

CentOS 7 安装Nginx做反向代理