From 3f46bc8d891531798718866c6b1f411701195d9d Mon Sep 17 00:00:00 2001 From: Eeap Date: Thu, 10 Aug 2023 20:52:34 +0900 Subject: [PATCH] fix: del client conf --- nginx.conf | 9 --------- 1 file changed, 9 deletions(-) diff --git a/nginx.conf b/nginx.conf index 230b07a..be1b436 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,3 @@ - - - upstream api_server { server backend-cluster:8000; # API upstream } @@ -17,16 +14,10 @@ server { location /api/v1/ { proxy_set_header Host $host; proxy_pass http://api_server/api/v1/; - client_header_timeout 30m; - client_body_timeout 30m; - client_max_body_size 1024M; proxy_connect_timeout 6000; proxy_send_timeout 6000; proxy_read_timeout 6000; send_timeout 6000; - - proxy_buffers 16 16k; - proxy_buffer_size 32k; } } \ No newline at end of file