博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx安装,反向代理配置
阅读量:5160 次
发布时间:2019-06-13

本文共 1191 字,大约阅读时间需要 3 分钟。

1.centos 版本

下载最新稳定版 https://www.nginx.com/resources/wiki/start/topics/tutorials/install/#

2.执行语句:

./configuremakesudo make install

如碰到./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library 问题,则执行

yum install pcreyum install pcre-devel

3.在安装目录下配置,本机是/usr/local/nginx/conf/nginx.conf。

配置使用端口 listen 8081(默认80)

4.测试配置文件是否可用

/usr/local/nginx/sbin/nginx -t

5.启动

/usr/local/nginx/sbin/nginx

6.在浏览器中访问

其它常用命令:

/usr/local/webserver/nginx/sbin/nginx -s reload            # 重新载入配置文件/usr/local/webserver/nginx/sbin/nginx -s reopen            # 重启 Nginx/usr/local/webserver/nginx/sbin/nginx -s stop              # 停止 Nginx

 配置反向代理

需求:同一服务器中同一个tomcat下不同资源包之间的互通。

nginx 端口:8081

tomcat 端口:80

nginx 配置文件中

server下location配置如下

location / {         proxy_pass http://127.0.0.1:80/;        }        location /resource1 {         rewrite /resource1/(.*) /resource2/$1 break;         proxy_pass http://127.0.0.1:80/;        }

结果:

127.0.0.1:8081/resouce1/* =》 实际获取的资源是是127.0.0.1:8081/resouce2/*

转载于:https://www.cnblogs.com/guochunyi/p/5399692.html

你可能感兴趣的文章
上传下载---上传
查看>>
Vue 子路由 与 单页面多路由 的区别
查看>>
JAVA里面的关键字"extends" &"implement"有什么区别
查看>>
图的存储(Java)以及遍历
查看>>
HDU2059龟兔赛跑(加油站)
查看>>
Android的数据库ORM框架:Sugar ORM
查看>>
android网络通讯数据封装之 json
查看>>
Android 获取imageview的图,在另一个imageview里显示。
查看>>
android ExpandableListView
查看>>
Android Canvas使用drawBitmap绘制图片
查看>>
简单说-自定义cell
查看>>
sql 数据库(表空间),用户 相关命令
查看>>
C++数据类型
查看>>
模拟死锁
查看>>
【备忘录】flatten
查看>>
创建 VXLAN - 每天5分钟玩转 OpenStack(111)
查看>>
数据表与简单java类(角色与权限)
查看>>
MVC学习四:Razor视图语法
查看>>
Java 如何判断导入表格某列是否有重复数据
查看>>
selenium用法
查看>>