Skip to content

Commit

Permalink
fixup! Add authentication support for upload and download
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoszbetka committed Jan 12, 2018
1 parent 3431c63 commit 91c54b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/config-maps/nginx-storage/default.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ server {
location /download/ {
limit_except GET { deny all; }
auth_request /download-auth/;
if ($request_uri ~* "/download/(.*)") {
if ($request_uri ~ "/download/(.*)") {
set $download_url $1;
}
error_page 401 = @error_401;
Expand Down

0 comments on commit 91c54b8

Please sign in to comment.