首先nginx最重要的三点就是
nginx基础配置文件
ps -ef |grep nginx查看nginx的进程号
nginx -s reload 优雅重启nginx/重新加载配置文件
nginx -t 查看nginx配置是否正确,测试配置是否有语法错误
nginx -h 查看帮助信息
nginx -c filename 指定配置文件
nginx -s stop nginx停止服务
nginx 启动nginx服务
sudo nginx打开nginx
upstream suibianquming {
server 127 .0.0.1:8080 weight=1;设置权重
server 127 .0.0.1:8081 weight=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://suibianquming;//这里和上面upstream suibianquming名字对应
}
}
在访问80端口之后upstream suibianquming 实现每次点击跳转到不同服务器实现负载均衡