美文网首页
nginx 基本使用

nginx 基本使用

作者: ynwshy | 来源:发表于2019-12-17 18:28 被阅读0次

winodws

1.安装

http://nginx.org/en/download.html
下载稳定版本,以nginx/Windows-1.12.2为例,直接下载 nginx-1.12.2.zip
http://nginx.org/download/nginx-1.12.2.zip
下载后解压

2.启动nginx

有很多种方法启动nginx
(1)直接双击nginx.exe,双击后一个黑色的弹窗一闪而过
(2)打开cmd命令窗口,切换到nginx解压目录下,输入命令

nginx.exe
或者
start nginx

访问服务

nginx配置默认为80端口
直接访问 localhost 或 127.0.0.1

3.关闭nginx

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

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

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

(快速停止nginx) 
nginx -s stop
(完整有序的停止nginx)
nginx -s quit
(强制关闭nginx所有进程)
taskkill /f /t /im nginx.exe

配置nginx

编辑 conf/nginx.conf

  • 代理

开启一个端口 8001 通过访问 localhost:8001 代理到其他服务器192.168.0.10的服务端口8000
设置 proxy_pass

    server {
       listen       8001;
       server_name  localhost;
       location / {
           proxy_pass  http://192.168.0.10:8000;
           index  index.html index.htm;
       }
    }
  • 静态服务

把电脑中的某个文件目录,开启静态服务
设置 root到前端项目

    server {
       listen       8002;
       server_name  localhost;
       location / {
           root E:\www;
           index  index.html index.htm;
       }
    }

相关文章

网友评论

      本文标题:nginx 基本使用

      本文链接:https://www.haomeiwen.com/subject/qzisnctx.html