基于Nginx创建本地资源下载库。
需要有基础Nginx服务,安装教程。
可以当做本地储存使用,也可在云服务器上当做云盘下载使用。
1.需要一个正常可使用的Nginx基础服务。
[root@localhost ~]# systemctl stop firewalld.service #关闭防火墙
[root@localhost ~]# /data/nginx/sbin/nginx #启动Nginx
[root@localhost ~]# ps -ef|grep nginx #查看Nginx是否正常启动
root 7245 1 0 10:03 ? 00:00:00 nginx: master process /data/nginx
nobody 7246 7245 0 10:03 ? 00:00:00 nginx: worker process
root 7248 7221 0 10:03 pts/0 00:00:00 grep --color=auto nginx
2.通过浏览器访问 Nginx 默认测试页面
当如上所示时,Nginx基础服务以正常启动。
3.进入Nginx配置文件修改配置文件
[root@localhost ~]# cd /data/nginx/conf
[root@localhost conf]# ls
fastcgi.conf koi-win scgi_params
fastcgi.conf.default mime.types scgi_params.default
fastcgi_params mime.types.default uwsgi_params
fastcgi_params.default nginx.conf uwsgi_params.default
koi-utf nginx.conf.default win-utf
4.进入nginx.conf
[root@localhost conf]# vim nginx.conf
-bash: vim: 未找到命令
[root@localhost conf]# yum install vim -y
[root@localhost conf]# vim nginx.conf
按 I 进入编辑模式,添加 autoindex on; #如下所示
添加完毕按左上角ESC输入 [:wq] 保存退出。
5.进入htnl目录删除目录下所以文件
[root@localhost conf]# cd /data/nginx/html
[root@localhost html]# ls
50x.html index.html
[root@localhost html]# rm -rf *
[root@localhost html]# ls
6.重启Nginx服务
[root@localhost html]# /data/nginx/sbin/nginx -s reload
7.通过网页访问Nginx 服务页面
访问成功,服务搭建成功。
8.可以使用rz与sz上传与下载文件
[root@localhost html]# yum install lrzsz -y #安装缺少的lrzsz组件
[root@localhost html]# rz
[root@localhost html]# ls
1.png wuzhongdao.jpeg #访问Nginx服务页面查看效果
到此本地资源下载库成功搭建。
云端资源下载库方法与其相同。