Created
August 12, 2014 18:58
-
-
Save kszarek/96a686a0a6e215c31cf1 to your computer and use it in GitHub Desktop.
only one can rule the world
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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