Nginx实现文件共享
生活随笔
收集整理的這篇文章主要介紹了
Nginx实现文件共享
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
文章目錄
- 前言
- 環(huán)境選擇
- Nginx安裝
- 1.配置nginx的yum源文件;
- 2.安裝Nginx并設置啟動與開機自啟;
- 3.測試Nginx是否啟動成功;
- 修改配置文件
前言
利用nginx的autoindex目錄索引模塊實現(xiàn)文件共享;
官方模塊詳解地址:https://nginx.org/en/docs/http/ngx_http_autoindex_module.html#autoindex
環(huán)境選擇
CentOS 7
Nginx 1.20.2
Nginx安裝
1.配置nginx的yum源文件;
[root@yejy ~]# cat /etc/yum.repos.d/Nginx.repo [nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=1 enabled=1 gpgkey=https://nginx.org/keys/nginx_signing.key module_hotfixes=true2.安裝Nginx并設置啟動與開機自啟;
yum install -y nginx systemctl start nginx && systemctl enable nginx3.測試Nginx是否啟動成功;
方法1: #查看端口,默認端口80 [root@yejy ~]# netstat -nptl | grep 80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 8200/nginx: master方法2: #查看進程 root@yejy ~]# ps -ef | grep nginx root 8200 1 0 Mar27 ? 00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf nginx 8581 8200 0 Mar27 ? 00:00:00 nginx: worker process nginx 8582 8200 0 Mar27 ? 00:00:04 nginx: worker process root 24775 23312 0 23:40 pts/0 00:00:00 grep --color=auto nginx方法3: #查看Nginx狀態(tài) [root@yejy ~]# systemctl status nginx ● nginx.service - nginx - high performance web serverLoaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)Active: active (running) since Sun 2022-03-27 20:50:55 CST; 1 day 2h agoDocs: http://nginx.org/en/docs/Process: 8195 ExecStop=/bin/sh -c /bin/kill -s TERM $(/bin/cat /var/run/nginx.pid) (code=exited, status=0/SUCCESS)Process: 8577 ExecReload=/bin/sh -c /bin/kill -s HUP $(/bin/cat /var/run/nginx.pid) (code=exited, status=0/SUCCESS)Process: 8199 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)Main PID: 8200 (nginx) ……方法4: #瀏覽器訪問 http://127.0.0.1/ 注:訪問失敗可嘗試關閉防火墻(systemctl stop firewalld)或selinux(setenforce 0)修改配置文件
1.進入nginx配置文件目錄 cd /etc/nginx/conf.d/2.注釋默認配置文件 [root@yejy /etc/nginx/conf.d]# gzip default.conf [root@yejy /etc/nginx/conf.d]# ll default.conf.gz -rw-r--r-- 1 root root 472 Mar 27 17:50 default.conf.gz3.修改 #創(chuàng)建文件共享目錄 mkdir /share_data#授權共享目錄 chmod 755 -R /share_data#修改配置文件 [root@yejy /etc/nginx/conf.d]# touch yejy.conf [root@yejy /etc/nginx/conf.d]# cat yejy.conf server {listen 80;server_name yejy1217.com;root /share_data/;autoindex on; }4.檢查語法 [root@yejy /etc/nginx/conf.d]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful5.重新加載配置文件 [root@yejy /etc/nginx/conf.d]# systemctl reload nginx配置完成效果查看
瀏覽器搜索IP,效果如下:
總結
以上是生活随笔為你收集整理的Nginx实现文件共享的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 坚持十年博客写作,不忘初心,方得始终
- 下一篇: [转载]通过插件支持,Geronimo