Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/adblockplus/templates/web/fileserver.conf.erb

Issue 29795567: #11371 - Password protection for fileserver repositories (Closed)
Left Patch Set: Created May 31, 2018, 4:19 p.m.
Right Patch Set: For comment 7 Created June 5, 2018, 6:47 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/adblockplus/manifests/web/fileserver/repository.pp ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # Puppet: <%= @title %> 1 # Puppet: <%= @title %>
2 2
3 location / { 3 location / {
4 root /var/www/$host; 4 root /var/www/$host;
5 <% if !@auth_users.empty? -%> 5 <% if @auth_file != nil -%>
6 auth_basic "Password protected"; 6 auth_basic "Password protected";
7 auth_basic_user_file <%= @auth_file%>; 7 auth_basic_user_file <%= @auth_filename %>;
8 <% end -%> 8 <% end -%>
9 } 9 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld