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安装监控设置反向代理的主要内容,如果未能解决你的问题,请参考以下文章