使用nginx搭建文件下载服务器

Posted junmail

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用nginx搭建文件下载服务器相关的知识,希望对你有一定的参考价值。

nginx.conf配置如下:

 

user  root;

worker_processes  8;

 

events

    worker_connections  1024;

 

http

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    tcp_nopush      on;

    keepalive_timeout  65;

 

        server

        listen       8009;

        server_name  localhost;

        autoindex on;

        autoindex_exact_size off;

        autoindex_localtime on;

        location /

            root   /usr/local/nginx/fileserver;

            index  index.html index.htm;

       

 

        error_page   500 502 503 504  /50x.html;

        location = /50x.html

            root   html;

       

   

 

以上是关于使用nginx搭建文件下载服务器的主要内容,如果未能解决你的问题,请参考以下文章

使用nginx搭建文件下载服务器

使用Nginx搭建静态网站

nginx搭建文件服务器

转:ginx入门指南,快速搭建静态文件服务器和代理服务器

使用nginx搭建文件下载服务器

使用nginx搭建文件下载服务器