使用nginx代理

安装

官方网站:https://nginx.org/en/download.html

启动

两种方法:

1) 直接双击该目录下的"nginx.exe",即可启动nginx服务器;

2) 命令行进入该文件夹,执行start nginx命令,也会直接启动nginx服务器。

nginx需要在英文目录下

默认监听80端口如果启动成功会显示,不显示下图查看80端口是否被占用

常用命令

// 停止,执行以下任意一条命令
1. nginx.exe -s stop
2. nginx.exe -s quit
3. nginx -s stop
4. nginx -s quit
5. ./nginx -s stop  // 楼主使用的
 
// 重启,执行以下任意一条命令
1. nginx.exe -s reload
2. nginx -s reload
3. ./nginx -s reload 

配置反向代理

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://localhost:7003;
    }
}
#访问http://localhost:80;的时候会被代理到http://localhost:7003端口上

配置负载均衡

upstream blog{  #blog可随意命名
    server localhost:7003 weight=3;  #权重值为3
    server localhost:7002 weight=2;  #权重值为2
    server localhost:7001 weight=1;  #权重值为1
}
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://blog;  #指向blog
    }
}

权重值越大访问次数越多、访问6次,端口7003必定会访问3次,而7001只会被访问到一次

posted @ 2022-10-31 15:33  默永  阅读(341)  评论(0编辑  收藏  举报