server7/storage: enable nginx webdav

This commit is contained in:
Astro 2020-01-26 21:59:55 +01:00
parent babf880949
commit b2f5af9abe
1 changed files with 10 additions and 7 deletions

View File

@ -36,15 +36,18 @@ name:
http2 = true;
# addSSL = true;
locations = {
"/" = let authFile = pkgs.writeText "htpasswd" "k-ot:sawCOTsl/fIUY";
in {
alias = "/srv/files/";
extraConfig = ''
"/" =
let
authFile = pkgs.writeText "htpasswd" "k-ot:sawCOTsl/fIUY";
in {
alias = "/srv/files/";
extraConfig = ''
auth_basic "Chaos";
auth_basic_user_file ${authFile};
fancyindex on;
# autoindex on;
'';
fancyindex on;
# autoindex on;
dav_access all:r;
'';
};
};
};