如何配置下载任何文件的NGINX服务器



我正在尝试在Linux上配置NGINX服务器,它可以从目录中下载任何文件。

但我面临的问题是,当文件是一个文本文件或文件名包含任何特殊字符,如空格和("()"#"&")时,浏览器将无法娱乐我,也不会给我任何信息。

我该如何解决此问题?我的配置是闲置的

http {
log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';
access_log  /var/log/nginx/access.log  main;
sendfile            on;
tcp_nopush          on;
tcp_nodelay         on;
keepalive_timeout   65;
types_hash_max_size 2048;
include             /etc/nginx/mime.types;
default_type        application/octet-stream;
#default_type        application/*;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
index   index.html index.htm;
server {
    listen       80 default_server;
    listen       [::]:80 default_server;
    server_name  localhost;
    root         /usr/share/nginx/html;
    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;
    location / {}

error_page 404/404.html;error_page 500 502 503 504/50x.html;

要下载文件而不是在浏览器中显示文件,MIME类型应设置为application/octet-stream它通常被声明为默认类型

通常,nginx使用文件扩展名来确定要使用的MIME类型,但可以在某个位置通过用空集指定types指令来关闭该扩展名。

使用URL中的%编码字符可以访问具有奇怪字符的文件名。

作为一个实验,您可能希望打开autoindex并关闭index来浏览文件。这也会告诉你,你的困难文件名也可以下载。

location / {
    index not_a_file;
    autoindex on;
    types {}
}

注意:我不知道有什么机制可以关闭index,只是将其设置为一个不太可能的名称。默认的index.html可能不会与下载目录的内容发生冲突

有关详细信息,请参阅此文档。

相关内容

最新更新