2.nginx 配置
Posted QueryMarsBo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.nginx 配置相关的知识,希望对你有一定的参考价值。
3.1. 配置反向代理
server {
listen 80;
server_name nginx-01.itcast.cn; #nginx所在服务器的主机名
#反向代理的配置
location / { #拦截所有请求
root html;
proxy_pass http://192.168.232.200:8080; #这里是代理走向的目标服务器:tomcat
}
}2.
以上是关于2.nginx 配置的主要内容,如果未能解决你的问题,请参考以下文章