windows下nginx负载均衡配置(使用nginx配置访问wgcloud的方法)
类别:服务器 浏览量:2333
时间:2021-10-05 00:39:47 windows下nginx负载均衡配置
使用nginx配置访问wgcloud的方法nginx配置如下:
如http://172.17.188.27/wgcloud
server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://172.17.188.27:9999; #root html; #index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
记得agent的配置文件项serverUrl的80端口也要写上,如下
#wgcloud-server端访问地址,端口一定要写,即使是80也要写哈 serverUrl=http://172.17.188.27:80
补充:nginx配置访问wgcloud,提高访问速度
upstream wgcloudServer { server 172.17.188.27:9999 weight=10; ip_hash; } server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://wgcloudServer; #root html; #index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; }
到此这篇关于使用nginx配置访问wgcloud的文章就介绍到这了,更多相关nginx配置wgcloud内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
您可能感兴趣
- nginx最佳配置(nginx和lvs各自的优劣以及适合的使用环境)
- nginx反向代理性能(nginx作grpc的反向代理踩坑总结)
- nginx跳转规则配置上下文(基于nginx实现上游服务器动态自动上下线无需reload的实现方法)
- nginx怎么配置静态资源(nginx实现发布静态资源的方法)
- nginx配置文件的几大模块(nginx简单配置多个server的方法)
- nginx把https转为http请求(使用nginx方式实现http转换为https的示例代码)
- nginx查看请求协议(Nginx之Http模块系列之autoindex模块的具体使用)
- jenkins 设置gitlab(jenkins+gitlab+nginx部署前端应用实现)
- nginx宝塔配置修改(宝塔面板默认的404页面不生效怎么办Nginx?)
- nginx 可以部署java吗(Java-利用Nginx负载均衡实现Web服务器)
- nginx怎么设置域名访问网页(Nginx服务器如何设置url链接)
- nginxlocation匹配参数(nginx location优先级的深入讲解)
- nginx-rtmp-module 配置(Nginx搭建rtmp直播服务器实现代码)
- 如何采集nginx的日志(Filebeat 采集 Nginx 日志的方法)
- nginx https 域名配置(阿里云Nginx配置https实现域名访问项目图文教程)
- nginxdjango部署(详解Django+uwsgi+Nginx上线最佳实战)
- 息烽 这个村 治垃圾 有招 人人争当卫生模范(息烽这个村治垃圾)
- 今天要吃什么(今天要吃什么菜)
- 三杨之一 南杨 杨溥 安贞履节,酿醴调羹,宰相之气(三杨之一南杨杨溥)
- 今天会下雨吗(今天会下雨吗小说)
- 追连续剧,品古今联4 明代三杨,联妙诗佳(追连续剧品古今联4)
- 三杨 共辅四朝帝王,构建明帝国内阁行政圈(三杨共辅四朝帝王)
热门推荐
- C#验证身份证号码
- javascript制作表格(JavaScript实现动态表格效果)
- dede栏目标签怎么调用(dedecms调用当前文档中TAG标签利于内页优化提高收录量)
- docker数据库如何初始化(Docker启动PostgreSQL时创建多个数据库的解决方案)
- frameset与iframe 的应用与区别
- python内置函数一览表(Python面向对象程序设计构造函数和析构函数用法分析)
- linq xml 查询
- laravel框架知识点(Laravel 不同生产环境服务器的判断实践)
- elasticsearch docker(在Docker中安装Elasticsearch7.6.2的教程)
- dedecms标签解析(解决DEDECMS采集文章待审核后仍列表显示)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9