adding new api route to use dynamic nginx upstreams
parent
906a9fb906
commit
492b7ddf2a
@ -0,0 +1,5 @@
|
||||
upstream xmrnodes {
|
||||
{% for op in ops %}
|
||||
server {{ op.codename }}.node.{{ domain }}:18081 max_fails=3 fail_timeout=5s;
|
||||
{% endfor %}
|
||||
}
|
Loading…
Reference in New Issue