nginx windows 转自 https://www.cnblogs.com/endv/p/12655866.html

nginx 安装配置

nginx( engine x) 是一款由俄罗斯的程序设计师 lgor Sysoev 所开发的高性能的 web 和方向代理服务器,也是一个 imap/pop3/smtp 代理服务器。

在高连接并发的情况下, nginx 是 apache 服务器不错的替代品。

 

1.下载 nginx

2.启动 nginx 

有很多种方法启动

1.直接双击 nginx.exe ,双击后一个黑色的弹窗闪过

2.打开 cmd 命令窗口,切换到 nginx 解压目录下,输入命令 nginx.exe 或者 start nginx 回车

3.检查 nginx 是否启动成功

直接在浏览器地址栏输入网址  http://localhost:80 回车,出现一个页面说明启动成功

nginx 的配置文件是 conf 目录下的 nginx.conf ,默认配置的 nginx 监听的端口为80,

如果80端口被占用可以修改为未被占用的端口即可

当我们修改了 nginx 的配置文件 nginx.conf 时,不需要关闭 nginx 后重新启动,

只需要执行命令 nginx -s reload 重载配置

4.关闭 nginx 

如果使用 cmd 命令窗口启动 nginx ,关闭 cmd 窗口是不能结束 nginx 进程的,

有两种方法关闭

1.输入 nginx 命令, nginx -s stop 快速停止 或者 nginx -s quit 完整有序的停止 

2.使用 taskkill     taskkill  /f /t /im nginx.exe

 

 

5.使用 nginx 代理服务器做负载均衡

我们可以修改 nginx 的配置文件  nginx.conf  达到访问 nginx 代理服务器时跳转到指定服务器的目的,即通过 proxy_pass 配置请求转发地址,即当我们依然输入 http://localhost:80 时,请求会跳转到我们配置的服务器

同理,我们可以配置多个目标服务器,当一台服务器出现故障时,nginx能将请求自动转向另一台服务器,

当服务器 localhost:8080 挂掉时,nginx 能将请求自动转向服务器 192.168.101.9:8080

上面还加了一个  weight 属性,表示各服务器被访问到的权重,

weight 越高被访问到的几率越高

 

6.nginx 配置静态资源

将静态资源(jpg   png   css  js 等)放在如下配置的目录下,然后在 nginx 配置文件中做如下配置 ,浏览器中可访问到

 

你可能感兴趣的:(nginx windows 转自 https://www.cnblogs.com/endv/p/12655866.html)