Skip to content

Commit

Permalink
cleanup condition
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobel committed Oct 23, 2014
1 parent 6b0a8b2 commit 332c66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/vhost/_proxy.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
ProxyPreserveHost On
<%- end -%>
<%- [@proxy_pass].flatten.compact.each do |proxy| -%>
ProxyPass <%= proxy['path'] %> <%= proxy['url'] %> <%- if proxy['params'].nil? == false -%> <%= proxy['params'] %> <%- end -%>
ProxyPass <%= proxy['path'] %> <%= proxy['url'] %> <%- if !proxy['params'].nil? -%> <%= proxy['params'] %> <%- end -%>

<Location <%= proxy['path']%>>
<%- if proxy['reverse_urls'].nil? -%>
Expand Down

0 comments on commit 332c66c

Please sign in to comment.