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代码  

  1. nginx -s stop

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

Command代码  

  1. 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代码  

  1. http {
  2. server {
  3. #1.侦听80端口
  4. listen  80;
  5. location / {
  6. # 2. 默认主页目录在nginx安装目录的html子目录。
  7. root   html;
  8. index  index.html index.htm;
  9. # 3. 没有索引页时,罗列文件和子目录
  10. autoindex on;
  11. autoindex_exact_size on;
  12. autoindex_localtime on;
  13. }
  14. # 4.指定虚拟目录
  15. location /tshirt {
  16. alias D:\programs\Apache2\htdocs\tshirt;
  17. index index.html index.htm;
  18. }
  19. }
  20. # 5.虚拟主机www.emb.info配置
  21. server {
  22. listen          80;
  23. server_name     www.emb.info;
  24. access_log emb.info/logs/access.log;
  25. location / {
  26. index index.html;
  27. root  emb.info/htdocs;
  28. }
  29. }
  30. }

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

Log代码  

  1. nginx version: nginx/0.7.65
  2. TLS SNI support enabled
  3. configure arguments:
  4. --builddir=objs.msvc8
  5. --crossbuild=win32
  6. --with-debug --prefix=
  7. --conf-path=conf/nginx.conf
  8. --pid-path=logs/nginx.pid
  9. --http-log-path=logs/access.log
  10. --error-log-path=logs/error.log
  11. --sbin-path=nginx.exe
  12. --http-client-body-temp-path=temp/client_body_temp
  13. --http-proxy-temp-path=temp/proxy_temp
  14. --http-fastcgi-temp-path=temp/fastcgi_temp
  15. --with-cc-opt=-DFD_SETSIZE=1024
  16. --with-pcre=objs.msvc8/lib/pcre-7.9
  17. --with-openssl=objs.msvc8/lib/openssl-0.9.8k
  18. --with-openssl-opt=enable-tlsext
  19. --with-zlib=objs.msvc8/lib/zlib-1.2.3
  20. --with-select_module
  21. --with-http_ssl_module
  22. --with-http_realip_module
  23. --with-http_addition_module
  24. --with-http_sub_module
  25. --with-http_dav_module
  26. --with-http_stub_status_module
  27. --with-http_flv_module
  28. --with-http_gzip_static_module
  29. --with-http_random_index_module
  30. --with-http_secure_link_module
  31. --with-mail
  32. --with-mail_ssl_module
  33. --with-ipv6

显然,最经常用的memcache, rewrite模块都没在其中,因此该win32编译版本仅能供基本开发测试使用,对于产品平台,应该重新编译自己想要的win32版本,或者在linux下使用更方便。

时间: 2024-10-11 22:43:47

Nginx - Windows下Nginx基本安装和配置的相关文章

windows下Emacs的安装与配置

windows下Emacs的安装与配置 1.下载到这个网址可以下载到Emacs的windows版本:http://ftp.gnu.org/pub/gnu/emacs/windows/只需要一个压缩文档,如emacs-23.2-bin-i386.zip 2.安装在D盘根目录下新建一个文件夹,取名Emacs23.2(也可以是其他路径,随个人喜好而定),将emacs-23.2-bin- i386.zip里的文件解压到这个目录下,这样在d:\Emacs23.2\下就有bin, tec, info, le

Windows下codeblocks的安装与配置

最近自己正好要使用codeblocks编写C++程序,安装好却发现无法编译,如果您也遇到相似问题,可以参考本文. 如果您已安装codeblocks,想转换成中文界面,直接参考Step 2. 如果您C程序无法编译,直接参考Step 3. Step 1.安装codeblocks [1]下载 codeblocks10.05setup [2]打开安装程序,点next直至安装完成(Win7请以管理员身份运行) Step 2.转换成中文界面 [1]下载 locale.zip [2]解压出 locale文件夹

转:windows 下的 eclipse安装goclipse 配置golang开发环境

windows 下的 eclipse安装goclipse 配置golang开发环境 windows 下的 eclipse安装goclipse 配置golang开发环境,捎带介绍了LiteIDE golang的配置 1. 下载goclipse eclipse plugins http://pan.baidu.com/s/1c0weLgO 安装完插件后,重启可以看到eclipse的右上角有个golang logo , 地鼠图标: 2. 下载golang,调试tools 下载Golang Window

windows下Anaconda的安装与配置正解

一.下载anaconda 第一步当然是下载anaconda了,官方网站的下载需要用迅雷才能快点,或者直接到清华大学镜像站下载. 清华大学提供了镜像,从这个镜像下载速度很快,地址: https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/ 选择相应的版本进行下载就好 下载过程中除了安装位置外,还有两个需要确认的地方. 第一个勾是是否把Anaconda加入环境变量,这涉及到能否直接在cmd中使用conda.jupyter.ipython等命令,推荐打勾,

Windows下MySQL下载安装、配置与使用

用过MySQL之后,不论容量的话,发现比其他两个(sql server .oracle)好用的多,一下子就喜欢上了.下面给那些还不知道怎么弄的童鞋们写下具体的方法步骤. (我这个写得有点太详细了,甚至有些繁琐,有很多步骤在其他的教程文档里都是省略掉的,但我还是要写出来,因为我当时走了很多弯路,我希望你们能够避免我走的这些弯路.当然,知道同学的可以略过,选择你想知道的地方看) 第一大步:下载.(不需要注册也可以下载,直接点下面的no thanks) a.俗话说:“巧妇难为无米之炊”嘛!我这里用的是

windows 下的 eclipse安装goclipse 配置golang开发环境

1. 下载goclipse eclipse plugins http://goclipse.googlecode.com/svn/trunk/goclipse-update-site/ (建议使用proxy下载,除非你能直接访问:)) 我在百度网盘上传了最新的goclipse插件包,提供下载:http://pan.baidu.com/s/1mgBR2Co SHA1 HASH:c43f10a00e509848c3016dbaa8162209daf00d4f MD5 HASH:81875edbbb4

Windows下Git的安装及配置

Git的BASH Git的为Windows提供了用于命令行运行的一个仿真BASH的Git.习惯LINUX和UNIX环境的你,可以在该BASH环境中输入“git”命令来完成各种版本控制的操作. 简介 Git-分布式版本控制系统. 安装步骤 Git下载地址(Windows 2.8.2-20160508):https://git-for-windows.github.io/ 或网盘地址:http://pan.baidu.com/share/link?uk=2033500837&shareid=1280

windows下vim的安装与配置

gvim7.4 1.安装 2.配置 打开安装目录下的_vimrc文件 ①设置语法高亮 set nu! colorscheme desert syntax enable syntax on 显示行号,使用desert配色方案,打开语法高亮功能(用不同颜色显示注释.关键字.字符串等).

Nginx - Windows下Nginx初入门

公司刚使用nginx,预先学习下.鉴于机器没有Linux环境,在Windows熟悉下. 下载 1)下载地址: http://nginx.org 目前(2017-05-30),nginx的稳定版本是,在官网下载先,12.0 2017-04-25 nginx-1.13.0 mainline version has been released. 2017-04-12 nginx-1.12.0 stable version has been released, incorporating new fea