From c1e715ea49a477c1099989dfc8784cbf6ef46b70 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Wed, 8 Jan 2025 10:02:37 -0800 Subject: [PATCH] fix(otel): allow larger otel size --- servers/otel-collector/httpd.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/servers/otel-collector/httpd.conf b/servers/otel-collector/httpd.conf index 470a5befa..834cfb1e5 100644 --- a/servers/otel-collector/httpd.conf +++ b/servers/otel-collector/httpd.conf @@ -1,5 +1,6 @@ # This is a default site configuration which will simply return 200 and proxy all requests to the upstream collector server { + client_max_body_size 100M; listen 3000 default_server; listen [::]:3000 default_server; @@ -11,4 +12,4 @@ server { location / { proxy_pass http://localhost:4318; } -} \ No newline at end of file +}