1
0
mirror of https://github.com/elisspace/rtinst.git synced 2026-08-29 23:52:13 +00:00
Files
rtinst/conf/nginxsitedl
Sebastião Guerra 7fb25fdd8e Update nginxsitedl
2016-05-30 14:03:18 -03:00

12 lines
357 B
Plaintext

location ~ ^/download/(.+?)(/.*)?$ {
alias /home/$1$2;
charset UTF-8;
source_charset UTF-8;
set $user $1;
if ($remote_user = '') { break; }
if ($user != $remote_user) { return 403; }
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
index index.html index.htm; autoindex on; autoindex_exact_size off;
}