您好,欢迎访问一九零五行业门户网

Nginx - Windows下Nginx基本安装和配置

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,应该是
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.虚拟主机www.emb.info配置    server {      listen          80;      server_name     www.emb.info;      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  
显然,最经常用的memcache, rewrite模块都没在其中,因此该win32编译版本仅能供基本开发测试使用,对于产品平台,应该重新编译自己想要的win32版本,或者在linux下使用更方便。 以上就介绍了nginx - windows下nginx基本安装和配置,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。
其它类似信息

推荐信息