Skip to content

Instantly share code, notes, and snippets.

@kszarek
Created August 12, 2014 18:58
Show Gist options
  • Save kszarek/96a686a0a6e215c31cf1 to your computer and use it in GitHub Desktop.
Save kszarek/96a686a0a6e215c31cf1 to your computer and use it in GitHub Desktop.
only one can rule the world
#cartmans
upstream wo {
<%- @wo.each do |host| %>
server <%= host %>:80<%- if @wo.length > 1 and @wo.index(host) != 0 %> backup<%- end %>;
<%- end %>
}
#cartmans2
upstream wo2 {
<%- @wo.each do |host| %>
server <%= host %>:80<%- if @wo.length > 1 and @wo.index(host).modulo(2) != 1 %> backup<%- end %>;
<%- end %>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment