Nginx配置反向代理和负载均衡
流程
注:hosts文件一般存在于电脑的C:\Windows\System32\drivers\etc目录下。
配置本地DNS域名解析
下载Nginx
下载地址
注:当前windows最新版为 nginx/Windows-1.18.0 版本。
解压后可以看到以下目录,Nginx文件目录结构介绍
Conf 配置文件 (该目录下有nginx核心配置文件 nginx.conf)
Contrib 存放一些实用工具
Docs 存放文档
Html 存放Html
Logs 存放日志文件
Temp 临时文件
测试代码(springboot框架)
@RestController
public class Test3 {
@Value("${server.port}")
private String port;
@GetMapping("/")
public String index(){
return "坤坤一号,项目端口为:"+port;
}
}
application.yml
server:
port: 8081
将编译工具Idea该选项勾上,允许运行多个项目后修改端口号为8082,保证运行了两个端口分别为8081和8082的项目。
修改Nginx配置文件
nginx.conf
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
# 上游服务 负载均衡 weight 权重
upstream backServer{
server 127.0.0.1:8081 weight=1;
server 127.0.0.1:8082 weight=2;
}
server {
# 监听端口
listen 80;
# 监听域名地址
server_name www.ls.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
# 反向代理地址
proxy_pass http://backServer;
root html;
index index.html index.htm;
}
}
}
windows版nginx cmd常用命令
cmd 进入Nginx解压目录 执行以下命令
验证配置是否正确: nginx -t
查看Nginx的版本号:nginx -V
启动Nginx:start nginx
快速停止或关闭Nginx:nginx -s stop
正常停止或关闭Nginx:nginx -s quit
配置文件修改重装载命令:nginx -s reload
结果演示