fix downloading skylink

This commit is contained in:
Karol Wypchlo 2020-11-26 15:49:54 +01:00
parent a0aba97298
commit 701eccbb2d
2 changed files with 4 additions and 2 deletions

View File

@ -289,7 +289,9 @@ server {
location ~ "^/file/([a-zA-Z0-9-_]{46}(/.*)?)$" { location ~ "^/file/([a-zA-Z0-9-_]{46}(/.*)?)$" {
include /etc/nginx/conf.d/include/proxy-buffer; include /etc/nginx/conf.d/include/proxy-buffer;
proxy_pass http://127.0.0.1/$uri?attachment=true&$args; rewrite /file/(.*) $1 break;
proxy_pass http://127.0.0.1/$1?attachment=true&$args;
} }
# include custom locations, specific to the server # include custom locations, specific to the server

View File

@ -2,7 +2,7 @@ proxy_cache skynet;
slice 1m; slice 1m;
proxy_http_version 1.1; # upgrade if necessary because 1.0 does not support byte-range requests proxy_http_version 1.1; # upgrade if necessary because 1.0 does not support byte-range requests
proxy_set_header Range $slice_range; # pass slice range to proxy proxy_set_header Range $slice_range; # pass slice range to proxy
proxy_cache_key $uri$arg_format$slice_range; # use just the uri path, format arg and slice range proxy_cache_key $uri$arg_format$arg_attachment$slice_range; # use just the uri path, format and attachment args and slice range
proxy_cache_min_uses 3; # cache responses after 3 requests of the same file proxy_cache_min_uses 3; # cache responses after 3 requests of the same file
proxy_cache_valid 200 206 24h; # cache 200 and 206 responses for 24 hours proxy_cache_valid 200 206 24h; # cache 200 and 206 responses for 24 hours
proxy_cache_bypass $cookie_nocache $arg_nocache; # add cache bypass option proxy_cache_bypass $cookie_nocache $arg_nocache; # add cache bypass option