Nginx 是一个轻量级的高性能 Http WebServer,以事件驱动方式编写,因此相比 Apache 而言,Nginx 更加稳定、性能更好,而且配置简单,资源占用较低。  
1. 安装 Nginx
从 v0.7.52 开始,Nginx 开始发布 Windows 版本的 Nginx,你可以在其官方网站上面下载:http://nginx.net  
下载后直接解压即可,这里解压缩到c:nginx目录。

宜君网站建设公司创新互联,宜君网站设计制作,有大型网站制作公司丰富经验。已为宜君成百上千家提供企业网站建设服务。企业网站搭建\
成都外贸网站建设公司要多少钱,请找那个售后服务好的
宜君做网站的公司定做!
2. 启动Nginx
命令行进入c:nginx目录,运行nginx.exe,启动控制台窗口。默认启用80端口。用过Tomcat的人都希望能在控制台看到启动日志,nginx的日志却不得不查看logs目录下的相应log文件。  
3. 访问欢迎html页
在浏览器中访问http://localhost,可以看到默认的欢迎页.  
4. 停止Nginx
Ctrl+C没反应。于是关闭控制台窗口。可是再访问http://localhost依然有效。查看进程,发现nginx根本没有被关闭。因此如果想彻底关闭nginx,应该是
请参考官方文档  nginx/Windows usage    
或者使用windows的taskkill命令:  
taskkill/F/IMnginx.exe>nul
Nginx的所有配置都默认使用conf/nginx.conf文件,其地位相当于apache的httpd.conf文件 。当运行nginx.exe暗含运行了nginx -c confnginx.conf. 如果想使用自己定义的conf文件如my.conf,命令为nginx -c confmy.conf.  
常用配置如下:  
http{    server{    #1.侦听80端口    listen80;    location/{    #2.默认主页目录在nginx安装目录的html子目录。    roothtml;    indexindex.htmlindex.htm;    #3.没有索引页时,罗列文件和子目录    autoindexon;    autoindex_exact_sizeon;    autoindex_localtimeon;    }    #4.指定虚拟目录    location/tshirt{    aliasD:programsApache2htdocstshirt;    indexindex.htmlindex.htm;    }    }    #5.虚拟主机www.emb.info配置    server{    listen80;    server_namewww.emb.info;    access_logemb.info/logs/access.log;    location/{    indexindex.html;    rootemb.info/htdocs;    }    }    }
小提示:  
运行nginx -V可以查看该Win32平台编译版支持哪些模块。我这里的结果为:  
nginxversion:nginx/0.7.65    TLSSNIsupportenabled    configurearguments:    --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
显然,最经常用的memcache, rewrite模块都没在其中,因此该win32编译版本仅能供基本开发测试使用,对于产品平台,应该重新编译自己想要的win32版本,或者在linux下使用更方便。
nginx -s stop   fast shutdown
nginx -s quit   graceful shutdown
nginx -s reload  changing configuration, starting new worker processes with a new configuration, graceful shutdown of old              worker processes
nginx -s reopen re-opening log files
                                                本文题目:Nginx-Windows下Nginx基本安装和配置