通过nginx制作类似阿里云镜像下载的网站

Posted 吕正元

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过nginx制作类似阿里云镜像下载的网站相关的知识,希望对你有一定的参考价值。

  一、创建下载文件存放的目录

mkdir /data/site1/download

  二、将被访问的源放到这个目录里

mount /dev/sr0 /data/site1/download/

  三、启用autoindex_module

server {
        access_log /var/log/nginx/a.net.log access_json;
        server_name www.a.net;
        root /data/site1;
        location / {
        }
        location /admin {
                root /data/;
                auth_basic "Admin Page";
                auth_basic_user_file /etc/nginx/conf.d/.nginx_passwd;
        }
        location /download {
                autoindex on;
                autoindex_exact_size off;
                autoindex_localtime on;
                limit_rate 100k;
                index index.html;
        }
}

配置文件下载服务:

  启用autoindex模块,自动文件索引功能,默为off

 autoindex on 

  计算文件确切大小(单位bytes),off 显示大概大小(单位K、M),默认on

autoindex_exact_size on | off;

  显示本机时间而非GMT(格林威治)时间,默认off

autoindex_localtime on | off ;

  显示索引的页面文件风格,默认html

autoindex_format html | xml | json | jsonp;

 


  

  

  

 

以上是关于通过nginx制作类似阿里云镜像下载的网站的主要内容,如果未能解决你的问题,请参考以下文章

阿里云镜像服务关联Github上传Docker容器制作的镜像

阿里云镜像服务关联Github上传Docker容器制作的镜像

Nginx网站服务详解

阿里云ECS镜像

阿里云服务器用Docker配置运行nginx并访问

SpringBoot项目打包部署到阿里云服务器通过Maven插件制作Docker镜像部署项目容器配置生产环境