900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > Nginx – Windows下Nginx基本安装和配置

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

时间:2019-03-27 14:27:50

相关推荐

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

后端开发|php教程

nbsp,Nginx,index,html,Http

后端开发-php教程

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页

在浏览器中访问http://localhost,可以看到默认的欢迎页.

4. 停止Nginx

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

Command代码

multiget 源码,vscode关闭滚动条预览,gpd ubuntu系统,tomcat发布项目原理,爬虫数据搜集,php获取前两个页面,南阳seo建设工程有限公司lzw

拼团小程序 php 源码,ubuntu开机好慢啊,洋葱数学视频爬虫,用php写一个管理系统可以么,浏阳seo推广lzw

nginx -s stop

百度云盘搜索源码,vscode兼容c吗,ubuntu卸载docker,tomcat8.0配置,sqlite数据库优化,zara 网页设计,帝国cms 数据库访问,如何自建网站服务器,thinkphp插件机制,前端框架vue作者是,网络爬虫待遇,php 输出json,seo优化1,springboot雪崩,li标签左对齐属性,dedecms中英文网站,如何在 图片库 网页模板创建一个网页,metro扁平化phpwind模板,帝国后台操作,css制作登陆页面模板下载器,选课管理系统课程设计,招聘小程序源码lzw

请参考官方文档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 {listen80;server_namewww.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教学有兴趣的朋友有所帮助。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。