码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 进行目录浏览的简单配置

时间:2019-12-31 12:27:01      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:通过   autoindex   ons   sftp   网络访问   http   ESS   worker   公司   

1. 公司网络安全不让用vsftpd的匿名网络访问了, 没办法 只能够使用 nginx 通过http协议来处理.

2. 最简单的办法就是另外开一个nginx进程简单设置一下nginx的配置文件

worker_processes 1;
events {
  worker_connections 1024;
}
http {
 include mime.types;
 sendfile on;
 gzip on;
 server {
    listener 80;
    server_name localhost;
    location / {
      root /gscloud/;
      autoindex on;
      autoindex_exact_size off;
      autoindex_localtime on;
    }
  }
}

3. 直接打开就可以

nginx -c gscloud.conf

4. 直接使用浏览器即可 

技术图片

nginx 进行目录浏览的简单配置

标签:通过   autoindex   ons   sftp   网络访问   http   ESS   worker   公司   

原文地址:https://www.cnblogs.com/jinanxiaolaohu/p/12123514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!