File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ server {
6262 proxy_pass $utmstack_agent_manager;
6363 # A self-signed certificate on an internal name: the hop is inside the
6464 # overlay, and what authenticates it is not being reachable from outside.
65- proxy_ssl_verify off;
65+
6666 }
6767
6868 location /v1/ingest {
@@ -71,32 +71,37 @@ server {
7171 }
7272
7373 location /agent.AgentService/ {
74- grpc_pass grpc://$utmstack_agent_manager_grpc;
74+ grpc_pass grpcs://$utmstack_agent_manager_grpc;
75+ grpc_ssl_verify off;
7576 grpc_read_timeout 900;
7677 grpc_send_timeout 900;
7778 }
7879
7980 location /agent.PanelService/ {
80- grpc_pass grpc://$utmstack_agent_manager_grpc;
81+ grpc_pass grpcs://$utmstack_agent_manager_grpc;
82+ grpc_ssl_verify off;
8183 grpc_read_timeout 900;
8284 grpc_send_timeout 900;
8385 }
8486
8587 location /agent.CollectorService/ {
86- grpc_pass grpc://$utmstack_agent_manager_grpc;
88+ grpc_pass grpcs://$utmstack_agent_manager_grpc;
89+ grpc_ssl_verify off;
8790 grpc_read_timeout 900;
8891 grpc_send_timeout 900;
8992 }
9093
9194 # log-input's ingest, whose service lives in the SDK's "plugins" package.
9295 location /plugins.Integration/ {
93- grpc_pass grpc://$utmstack_log_input_grpc;
96+ grpc_pass grpcs://$utmstack_log_input_grpc;
97+ grpc_ssl_verify off;
9498 grpc_read_timeout 900;
9599 grpc_send_timeout 900;
96100 }
97101
98102 location /agent.PingService/ {
99- grpc_pass grpc://$utmstack_agent_manager_grpc;
103+ grpc_pass grpcs://$utmstack_agent_manager_grpc;
104+ grpc_ssl_verify off;
100105 grpc_read_timeout 900;
101106 grpc_send_timeout 900;
102107 }
You can’t perform that action at this time.
0 commit comments