Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions installer/templates/front-end.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,36 +72,33 @@ server {

location /agent.AgentService/ {
grpc_pass grpcs://$utmstack_agent_manager_grpc;
grpc_ssl_verify off;
grpc_read_timeout 900;
grpc_send_timeout 900;
client_body_timeout 1h;
grpc_socket_keepalive on;
}

location /agent.PanelService/ {
grpc_pass grpcs://$utmstack_agent_manager_grpc;
grpc_ssl_verify off;
grpc_read_timeout 900;
grpc_send_timeout 900;
}

location /agent.CollectorService/ {
grpc_pass grpcs://$utmstack_agent_manager_grpc;
grpc_ssl_verify off;
grpc_read_timeout 900;
grpc_send_timeout 900;
}

# log-input's ingest, whose service lives in the SDK's "plugins" package.
location /plugins.Integration/ {
grpc_pass grpcs://$utmstack_log_input_grpc;
grpc_ssl_verify off;
grpc_read_timeout 900;
grpc_send_timeout 900;
}

location /agent.PingService/ {
grpc_pass grpcs://$utmstack_agent_manager_grpc;
grpc_ssl_verify off;
grpc_read_timeout 900;
grpc_send_timeout 900;
}
Expand Down
Loading