1.先从Neginx官网下载 最新的nginx zip包; 2.解压到本地 全英文目录下 3.修改 nginx-1.20.1\conf\nginx.conf 文件
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
upstream hxdServer {
server 127.0.0.1:8080 weight=1;
server 127.0.0.1:8081 weight=1;
}
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
proxy_pass http://hxdServer;
}
}
}
4.以上是将配置文件里注释的内容删掉,斜体加粗则是新加的负责均衡和反向代码;
5.修改完成后,重启 nginx服务即可: 重启命令 nginx -s reload 6.重启成功后,页面访问 80端口(nginx默认监听端口是80),后面加业务路径,就可以访问到自己的业务了
|