当前位置:首页 > Windows程序 > 正文

Windows下Nginx基本安装和配置

2021-03-27 Windows程序

Nginx 是一个轻量级的高性能 Http WebServer,以事件驱动方式编写,因此相比 Apache 而言,Nginx 更加稳定、性能更好,而且配置简单,资源占用较低。 

1. 安装 Nginx 
从 v0.7.52 开始,Nginx 开始发布 Windows 版本的 Nginx,你可以在其官方网站上面下载: 
下载后直接解压即可,这里解压缩到c:\nginx目录。 

2. 启动Nginx 
命令行进入c:\nginx目录,运行nginx.exe,启动控制台窗口。默认启用80端口。用过Tomcat的人都希望能在控制台看到启动日志,nginx的日志却不得不查看logs目录下的相应log文件。 

3. 访问欢迎html页 
在浏览器中访问,可以看到默认的欢迎页. 

4. 停止Nginx 
Ctrl+C没反应。于是关闭控制台窗口。可是再访问依然有效。查看进程,发现nginx根本没有被关闭。因此如果想彻底关闭nginx,应该是 

Command代码  

nginx -s stop  


请参考官方文档nginx/Windows usage 
或者使用windows的taskkill命令(推荐用下面的): 

Command代码  

taskkill /F /IM nginx.exe > nul  



5. Ngnix常用配置 
Nginx的所有配置都默认使用conf/nginx.conf文件,其地位相当于apache的httpd.conf文件 。当运行nginx.exe暗含运行了nginx -c conf\nginx.conf. 如果想使用自己定义的conf文件如my.conf,,命令为nginx -c conf\my.conf. 
常用配置如下: 

Nginx.conf代码  

http {  

  server {  

    #1.侦听80端口   

    listen  80;   

    location / {  

        # 2. 默认主页目录在nginx安装目录的html子目录。  

        root   html;  

        index  index.html index.htm;  

        # 3. 没有索引页时,罗列文件和子目录  

        autoindex on;  

        autoindex_exact_size on;  

        autoindex_localtime on;  

    }  

    # 4.指定虚拟目录  

    location /tshirt {  

    alias D:\programs\Apache2\htdocs\tshirt;  

    index index.html index.htm;  

    }  

  }  

  # 5.虚拟主机配置  

  server {  

    listen          80;  

    server_name     ;  

    access_log emb.info/logs/access.log;  

    location / {  

      index index.html;  

      root  emb.info/htdocs;  

    }  

  }  

}  



小提示: 
运行nginx -V可以查看该Win32平台编译版支持哪些模块。我这里的结果为: 

Log代码  

nginx version: nginx/0.7.65  

TLS SNI support enabled  

configure arguments:   

--builddir=objs.msvc8   

--crossbuild=win32   

--with-debug --prefix=   

--conf-path=conf/nginx.conf   

--pid-path=logs/nginx.pid   

--http-log-path=logs/access.log   

--error-log-path=logs/error.log   

--sbin-path=nginx.exe   

--http-client-body-temp-path=temp/client_body_temp   

--http-proxy-temp-path=temp/proxy_temp   

--http-fastcgi-temp-path=temp/fastcgi_temp   

--with-cc-opt=-DFD_SETSIZE=1024   

--with-pcre=objs.msvc8/lib/pcre-7.9   

--with-openssl=objs.msvc8/lib/openssl-0.9.8k   

--with-openssl-opt=enable-tlsext   

--with-zlib=objs.msvc8/lib/zlib-1.2.3   

--with-select_module   

--with-http_ssl_module   

--with-http_realip_module   

--with-http_addition_module   

--with-http_sub_module   

--with-http_dav_module   

--with-http_stub_status_module   

--with-http_flv_module   

--with-http_gzip_static_module   

--with-http_random_index_module   

--with-http_secure_link_module   

--with-mail   

--with-mail_ssl_module   

--with-ipv6  

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/68261.html