nginx 结合tomcat 做简单的反向代理 tomcat nginx apache wildfly 安装配置 nginx tomcat负载均
程序员文章站
2022-05-16 21:02:22
...
1.简单说明
4.浏览器访问http://192.168.56.201,此时可以看到页面跳转至熟悉的tomcat欢迎页面。
服务器1安装nginx,监听80端口,ip:192.168.56.201
服务器2安装tomcat,监听8080端口
2.修改nginx配置
vi nginx.conf
找到server一段,并在localtion最下面加入proxy_pass http://192.168.56.202:8080;修改后的配置如下
server {
listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; proxy_pass http://192.168.56.202:8080; }3.分别启动服务器1上的nginx跟 服务器2上的tomcat
4.浏览器访问http://192.168.56.201,此时可以看到页面跳转至熟悉的tomcat欢迎页面。
以上就介绍了nginx 结合tomcat 做简单的反向代理,包括了tomcat,nginx方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
nginx+tomcat负载均衡环境搭建 tomcat nginx apache wildfly 安装配置 nginx tomcat负载均
-
nginx的学习--反向代理与负载均衡 nginx负载均衡的意义 nginx 负载均衡 挂掉 nginx tomcat负载均
-
nginx 结合tomcat 做简单的反向代理 tomcat nginx apache wildfly 安装配置 nginx tomcat负载均
-
nginx+tomcat负载均衡环境搭建 tomcat nginx apache wildfly 安装配置 nginx tomcat负载均
-
tomcat组件安装+Nginx反向代理tomcat+Apache使用mod_jk和mod_proxy反向代理和负载均衡
-
tomcat组件安装+Nginx反向代理tomcat+Apache使用mod_jk和mod_proxy反向代理和负载均衡
-
nginx 结合tomcat 做简单的反向代理 tomcat nginx apache wildfly 安装配置 nginx tomcat负载均