nginx.conf modification

This commit is contained in:
Jay Ehsaniara
2021-07-01 12:54:37 -07:00
parent aa0350dd86
commit d3baf61b50

View File

@@ -1,8 +1,8 @@
events { } events { }
stream { stream {
upstream loadbalance { upstream loadbalance {
server host.docker.internal:8081; server host.docker.internal:8081 max_fails=1 fail_timeout=1s;
server host.docker.internal:8082; server host.docker.internal:8082 max_fails=1 fail_timeout=1s;
} }
server { server {