nginx安装使用

1.前言

当我们希望分享自己的文件时,有多种方式,局域网可以采用共享,rtx传输,qq传输,发送到邮箱,直接u盘拷贝等等。但最简单的就是开启本地服务器,其他电脑通过网页的方式直接下载,这里介绍使用nginx作为服务器进行下载

2.步骤

1.下载nginx http://nginx.org/en/download.html 目前稳定版本为1.80 解压到一个目录
2.修改配置文件
nginx.conf

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { #root html; #index index.html index.htm; if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$){ add_header Content-Disposition: 'attachment;'; } } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
3.在nginx目录下的html中建立目录test和test.rar文件
4.打开命令行切换到nginx目录
4.1测试脚本 nginx -t
4.2开启服务器 start nginx
4.3打开浏览器 http://localhost:8080/test/test.rar应该弹出另存为对话框
4.4关闭服务器nginx -s quit

 

windows系统下将nginx作为系统服务启动

下载安装nginx,并记住安装目录 官网下载

下载winsw,下载地址

2. winsw设置
将winsw可执行程序复制到nginx安装目录下,并重命名为nginx-service

新建名为nginx-service.xml的文件(注:文件名必须与可执行文件名相同)

并编辑如下,其中name为 服务名,executable为可执行程序路径,logpath为程序运行日志路径

 

[html]  view plain  copy
 
  1. <service>      
  2.  <id>nginx</id>      
  3.   <name>nginx</name>      
  4.   <description>nginx</description>      
  5.   <executable>E:\phpStudy\nginx\nginx.exe</executable>      
  6.   <logpath>E:\phpStudy\nginx\</logpath>      
  7.   <logmode>roll</logmode>      
  8.   <depend></depend>      
  9.   <startargument>-p E:\phpStudy\nginx</startargument>      
  10.   <stopargument>-p E:\phpStudy\nginx -s stop</stopargument>      
  11. </service>  

 

如下:

 


3. 安装服务

在nginx安装目录下运行cmd(快捷方式:shift + 鼠标右键),运行命令:nginx-service.exe install

注:nginx-service.exe uninstall命令可删除对应的系统服务

nginx-service.exe stop命令可停止对应的系统服务

nginx-service.exe start命令可启动对应的系统服务

 

4. 查看服务是否安装成功

计算机管理  -> 服务

 

 

如服务为未运行状态,可在此启动服务,或设置为自动启动

 

注:若服务安装成功,可在cmd(管理员身份)中对服务进行如下操作

启动nginx :net start nginx

停止nginx:net stop nginx

 

 

4. 验证nginx是否正常运行

在浏览器中打开网址http://localhost

转载于:https://www.cnblogs.com/yaowen/p/9001847.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值