nginx
肌肉大大
这个作者很懒,什么都没留下…
展开
-
Nginx常用命令
nginx的学习注意:使用的时候需要进入nginx目录下/usr/sbin/nginx如何确定nginx的目录在哪里呢使用whereis nginx查看查看版本号nginx -v启动nginxnginx关闭nginxnginx -s stop重新加载nginxnginx -s reloadnginx配置文件...原创 2021-08-12 12:37:36 · 87 阅读 · 0 评论 -
搭建反向代理遇见的问题
今天试了一下搭建三台tomcat在同一台服务器中,进行反向代理的时候处理404错误起因:我部署了三台tomcat分别监听8080,8081,9000端口,然后想通过nginx进行反向代理,具体配置如下 server{ listen 8080; server_name localhost; location ~ /edu/ { proxy_pass http://localhost:8081; } location ~ /vod/{ proxy_pas原创 2021-08-12 12:36:59 · 116 阅读 · 0 评论 -
nginx安装出现的问题
1.Nginx安装ubuntu 安装nginx, 出现 Unable to locate package今天在初始化一台新的ubuntu 服务器时,敲上了 sudo apt-get install nginx 来安装nginx, 却发现提示:Reading package lists… DoneBuilding dependency treeReading state information… DoneE: Unable to locate package nginx然后敲上: sudo a原创 2021-08-12 12:34:33 · 1222 阅读 · 0 评论 -
Nginx反向代理
Nginx反向代理环境准备:1.JDK2.TomCat服务器3.Nginx服务器具体配置1.在windows系统的host文件中配置域名和ip对应关系得配置2.nginx中进行请求转发的配置(反向代理)1.修改nginx配置文件在htpp块中,修改监听位置以及要跳转的地方 server { listen 80; server_name 112.74.183.130; location / { root html; proxy_pass http://112.原创 2021-08-12 12:33:51 · 89 阅读 · 0 评论 -
Nginx负载均衡
Nginx负载均衡增加服务器的数量,然后将请求分发到各个服务器上,将负载分发到不同服务器。就是我们说的负载均衡配置1.效果:浏览器输入地址后,将请求平均到8080和8081端口中环境1.两台tomcat服务器,一台9000,一台80812.在两台tomcat里面创建edu文件夹,在edu文件夹中创建测试页面a.html配置文件修改在http块中加入upstream myserver{ server locolhost :端口 server localhost:端口}server原创 2021-08-12 12:33:18 · 135 阅读 · 0 评论 -
nginx安装
1.Nginx安装ubuntu 安装nginx, 出现 Unable to locate package今天在初始化一台新的ubuntu 服务器时,敲上了 sudo apt-get install nginx 来安装nginx, 却发现提示:Reading package lists… DoneBuilding dependency treeReading state information… DoneE: Unable to locate package nginx然后敲上: sudo a原创 2021-08-10 21:41:50 · 123 阅读 · 0 评论