nginx

关注公众号 jb51net

关闭
首页 > 网站技巧 > 服务器 > nginx > windows下nginx操作命令

windows下nginx如何操作命令

作者:与荒野°

这篇文章主要介绍了windows下nginx如何操作命令,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

windows下nginx操作命令

1:启动nginx

进入nginx 文件夹

此处使用管理员CMD 键入start nginx 看到cmd窗口一闪而过即为启动成功

2:停止 nginx

stop nginx

3:杀死全部nginx 进程

taskkill /f /t /im nginx.exe(重要)

4:重新加载nginx.conf文件

nginx -s reload

nginx的启动安装和常用配置例子

由于自己的之前学习 nginx 只会简单使用,然后每次配置 nginx 都要找文档去了解怎么配置,有点麻烦,所以这里记录下一些常用的nginx 配置和配置的例子,到时候直接 copy 修改即可

nginx 的主要功能为 静态文件的服务器、负载均衡、重写或重定向url、正向代理、反向代理 等。

这里使用的 nginx 版本为 1.16.0

配置文件的主要结构为:

nginx.conf

http{
  # 这个用于负载均衡的配置
  upstream backend {
    server backend1.example.com       weight=5;
    server backend2.example.com:8080;
    server backup2.example.com:8080   backup;
  }
  # 服务配置1,我们一般只要修改这里的信息即可
  server{
    listen 8080;
    location / {
      proxy_pass http://localhost:8080;
    }
  }
  # 这个 server 是服务配置2
  server{
    listen 80;
    location ~ \.(gif|jpg|png)$ {
      proxy_pass http://backend;
    }
  }
  # includ 用来引入 nginx 在其他目录的配置文件,一般正式的公司项目会这样使用,并以每个域名或 server 块分成每个配置文件。
  include cust_conf/mainconf; # 加多一个确定的文件,这样找不到文件的时候会报错,以免配置错目录 
  includ /data/host/config/*.conf;
}

启动相关

window 启动

cmd命令进入安装文件;

1、启动:C:\server\nginx-1.0.2>start nginx 或C:\server\nginx-1.0.2>nginx.exe

注:建议使用第一种,第二种会使你的cmd窗口一直处于执行中,不能进行其他命令操作。

nginx 命令行参数

不像许多其他软件系统,Nginx 仅有几个命令行参数,完全通过配置文件来配置

启动、停止 和重新加载配置

通过执行 nginx 的可执行文件可以直接启动 nginx。只要 nginx 启动了,则可以通过执行 nginx 加 -s 参数来控制 nginx 的一些行为。用法如下:

nginx -s ${signal}

${signal} 可以为以下四个值:

例如:可以通过执行 nginx -s reload 来重新加载配置文件,使更改过的配置文件生效。

静态文件的服务器

前端文件或者图片服务的部署,一般会使用到这个功能,通过 nginx 服务器来分发(sering out)文件,然后用户从网络上能够通过 ip 或 域名直接访问到

1. 实现访问 stats-server.kanlon.com 实现将 /data/fr 下的目录作为静态文件访问

server {
    # 访问端口81,并且访问的域名为 stats-server.kanlon.com 使用该配置
    listen 81;
    server_name stats-server.kanlon.com;
    charset utf8;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    # 如果是/img/ 路径,则转发到专门存放图片的路径/data/img/中 
    location /img/ {
       alias /data/img/;
    }
    location / {
        root /data/fr;
    }
}

如果访问出现错误,可以看一下 logs/error.log 的错误日志,这里会打印出实际访问的文件路径。还有测试 nginx 的时候一定要注意是否启动了多个 nginx 否则可能更改了配置会以为自己设置错误不生效的(沉重教训)

负载均衡

通过 nginx 可以实现将请求自动转发都自己的指定的服务域名上,减少单台服务请求量和实现服务的高可用。

nginx 上默认是通过 ngx_http_upstream_module 模块实现

1. 配置访问 load-balancing-test.kanlon.com:83 则负载均衡到指定三个域名上

负载的三个域名地址:load-balancing-test-1.kanlon.com:84,load-balancing-test-2.kanlon.com:85,load-balancing-test-3.kanlon.com:86

其中 要求 load-balancing-test-3.kanlon.com:86 作为备份服务,load-balancing-test.kanlon.com-1:84 和load-balancing-test-2.kanlon.com:85 的请求数分布比例为 1:2

# 配置健康检查,当为502,503,504,404的时候表示服务不可用,60秒内有两个这样的失败请求则负载到另一个服务上
proxy_next_upstream http_502 http_503 http_504 http_404 error timeout invalid_header;
upstream balancing {
    server load-balancing-test-1.kanlon.com:84 max_fails=1 fail_timeout=60s  weight=1;
    server load-balancing-test-2.kanlon.com:85 max_fails=2 fail_timeout=60s  weight=2;
    server load-balancing-test-3.kanlon.com:86 backup;
}
server {
    # 访问端口83,并且访问的域名为 load-balancing-test.kanlon.com 使用该配置
    listen 83;
    server_name load-balancing-test.kanlon.com;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    location / {
        proxy_pass http://balancing;
    }
}
server {
    # 访问端口84,并且访问的域名为 load-balancing-test-1.kanlon.com 使用该配置
    listen 84;
    server_name load-balancing-test-1.kanlon.com;
    charset utf8;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    location / {
        # 通过在目录后面加上没有文件的目录可以模拟服务不可用
        root /data/nginx/load-balancing/load-balancing-test-1;
    }
}
server {
    # 访问端口85,并且访问的域名为 load-balancing-test-2.kanlon.com 使用该配置
    listen 85;
    server_name load-balancing-test-2.kanlon.com;
    charset utf8;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    location / {
        # 通过在目录后面加上没有文件的目录可以模拟服务不可用
        root /data/nginx/load-balancing/load-balancing-test-2;
    }
}
server {
    # 访问端口86,并且访问的域名为 load-balancing-test-3.kanlon.com 使用该配置
    listen 86;
    server_name load-balancing-test-3.kanlon.com;
    charset utf8;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    location / {
        root /data/nginx/load-balancing/load-balancing-test-3;
    }
}

其中的包含了一些 nginx 的健康检查的指令

max_fails=number 设定Nginx与服务器通信的尝试失败的次数。在fail_timeout参数定义的时间段内,如果失败的次数达到此值,Nginx就认为服务器不可用。在下一个fail_timeout时间段,服务器不会再被尝试。 失败的尝试次数默认是1。设为0就会停止统计尝试次数,认为服务器是一直可用的。 你可以通过指令proxy_next_upstream、fastcgi_next_upstream和 memcached_next_upstream来配置什么是失败的尝试。 默认配置时,http_404状态不被认为是失败的尝试。

fail_timeout=time 设定服务器被认为不可用的时间段以及统计失败尝试次数的时间段。在这段时间中,服务器失败次数达到指定的尝试次数,服务器就被认为不可用。

重写或重定向 url

nginx 可以将匹配的 url 重定向到另外的 url 去,包含改变地址

指定地址重定向

将 rewrite-local.kanlon.com/rewrite/same/site/** 重定向到 rewrite-local.kanlon.com/rewrite2/same/site/** 和 将 rewrite-local.kanlon.com/rewrite/other/site 重定向到 rewrite-other.kanlon.com/rewrite2/same/site

server {
    # 访问端口88,并且访问的域名为 rewrite-local.kanlon.com 使用该配置
    listen 88;
    server_name rewrite-local.kanlon.com;
    charset utf8;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    # 转发到本域名的其它路径
    location /rewrite/same/site {
        rewrite ^/rewrite/same/site(.*)$ /rewrite2/same/site$1 last;
    }
    # 转发到另外的域名,如果要 重定向,; 前面加上 permanent (永久重定向 301 即可),默认为 302 临时重定向
    location /rewrite/other/site {
        rewrite ^/rewrite/other/site(.*)$ http://rewrite-other.kanlon.com:89/rewrite2/same/site$1 permanent;
    }
    location /rewrite2/same/site {
       default_type text/html;
       return 200 "$request_uri";
    }
    location / {
        root /data/nginx/rewrite-test/rewriter-local;
    } 
}
server {
    # 访问端口89,并且访问的域名为 rewrite-other.kanlon.com 使用该配置
    listen 89;
    server_name rewrite-other.kanlon.com;
    charset utf8;
    # 设置自动查找index文件为false,避免安全性问题
    autoindex off;
    # 设置展示首页的文件
    index  index.html index.htm index.php;
    location /rewrite2/same/site {
       default_type text/html;
       return 200 "$request_uri";
    }
    location / {
        root /data/nginx/rewrite-test/rewriter-other;
    } 
}

正向代理

正向代理,就是好像我们平常使用的 vpn 那样,我们的访问的域名不会变,只不过通过 nginx 来帮我们发送请求和接收请求,并返回自己客户端。nginx 默认支持 http 协议的正向代理,如果要支持 https 需要安装组件。

nginx 配置如下:

server {
    listen       90;
    server_name  forward-agent.kanlon.com;
    # 这里配置 DNS 服务器的IP地址
    resolver 8.8.8.8;
    location / {
        proxy_pass http://$http_host$request_uri;
    }
}

然后,再在自己电脑上配置代理服务器和端口,即可完成正向代理。

反向代理

反向代理,则直接访问 nginx 的域名来替代访问自己原来的要访问资源的域名,然后得到原资源的域名返回的结果

这样则访问 reverse-proxy.kanlon.com/abc -> http://127.0.0.1:8080/abc

server {
    listen       91;
    server_name  reverse-proxy.kanlon.com;
    #设置代理
    location / {
        proxy_pass http://127.0.0.1:8080/;
    }
}

下面的配置则为 访问 reverse-proxy.kanlon.com/abc -> http://127.0.0.1:8080/test/abc

server {
    listen       91;
    server_name  reverse-proxy.kanlon.com;
    #设置代理
    location / {
        proxy_pass http://127.0.0.1:8080/test/;
    }
}

注意:最好保持 locate 后面有/ 与 proxy_pass 后面有 / ,这样保持转发的路径一样,不然如果proxy_pass 后面没 / 的话,例如:

server {
    listen       91;
    server_name  reverse-proxy.kanlon.com;
    #设置代理
    location / {
        proxy_pass http://127.0.0.1:8080/test;
    }
}

则访问时候会变成 reverse-proxy.kanlon.com/abc -> http://127.0.0.1:8080/testabc

配置支持websocket(添加后不会影响普通请求的)

首先需要在nginx 主文件中,http 块增加以下配置。表示如果带有upgrade 头,则升级为请求,否则不;因为websocket请求是基于http请求来实现,会通过普通http请求来升级

        ##
        # websocket Settings
        ##
        # 如果没有Upgrade头,则$connection_upgrade为close,否则为upgrade
        map $http_upgrade $connection_upgrade {
          default upgrade;
          '' close;
        }

另外需要再server -> location 模块中添加上下面两个设置请求头的配置

proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;

具体可以一个例子可以参考下面的配置

server {
    listen 80;
    server_name abc.kanlon.ink  superset.kanlon.top;
    charset utf8;
    index  index.html index.htm index.php;
    location / {
         proxy_pass http://localhost:8088;
         proxy_http_version 1.1;
         proxy_redirect off;
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_read_timeout 3600s;
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
         # 主要是下面两个的配置
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection $connection_upgrade;
    }
}

隐藏文件的实际后缀

有时候我们想让访问静态html文件的时候,需要隐藏掉后缀.html,可以像下面这样配置

server {
    listen 81;
    charset utf8;
    autoindex off;
    index  index.html index.htm index.php;
    try_files $uri $uri/ /index.html?$query_string;
    # 如果是以html或者 htm 结尾,则直接返回对应文件,以免引起nginx循环查找
    location ~ \.(htm|html)$ {
      root  /data/nginx_static;
    }
    location / {
      # 如果访问的文件不存在,则通过访问时添加后缀来隐藏URL中的后缀
      if (!-e $request_filename){
         rewrite ^(.*)$ /$1.html last; 
         break;
      } 
      root  /data/nginx_static;
    }
}

这样的话,假设项目根目录下有login.html 文件,原只能通过访问 127.0.0.1/login.html 访问到,设置之后,通过 127.0.0.1/login 或者 127.0.0.1/login.html 都能访问到

使用nginx的一些注意事项

nginx 配置的if函数不支持嵌套(if(1=1){if(a=b){})和多条件and 、or 等条件拼接(if(1=1 and 2=2))。

如果要实现多条件判断,一般使用一个中间变量来实现,如下示例,就是实现了当访问域名为根目录的时候,如果域名地址不是以home开头的并且带有查询参数时,则强制跳转到对应的域名;

    location = / {
        set $need_redirect 0;
        if ($query_string) {
              set $need_redirect 1;
        }
        # 如果是home开头的域名,则不用跳转;否则为其他开头的域名,都需要跳转到home(并且在查询参数存在的时候)
        if ($host ~ "^home(.*)") { 
              set $need_redirect 0;
        }
        if ($need_redirect) {
              rewrite ^/(.*)$ http://home-test.kanlon.ink/$1 last;
        }
    }

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文