Long file upload Nginx Proxy Manager

Hey guys, we need your ideas, because problem very important. Many servers used Nginx Proxy Manager through Docker, and perfomance is slowly. I saw, that my server the first upload files in RAM and disk cache, and after transfers to Nextcloud PHP and save data in data dirrectory.
Because of this, the data are loaded quickly, but they are stored for a very long time.
image
I have tried all Nginx configurations and directives, but there is no result and the problem is not solved. But if used NC without Proxy Manager uploading very fast and have not problem.

My NC config: 
$CONFIG = array (
  'memcache.local' => '\\OC\\Memcache\\Redis',
  'filelocking.enabled' => true,
  'memcache.distributed' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => '/opt/redis-server.sock',
    'port' => 0,
    'password' => '***********',
    'timeout' => 0.0,
  ),
  'enable_previews' => true,
  'preview_max_scale_factor' => NULL,
  'enabledPreviewProviders' => 
  array (
    0 => 'OC\\Preview\\PNG',
    1 => 'OC\\Preview\\JPEG',
    2 => 'OC\\Preview\\TIFF',
    3 => 'OC\\Preview\\GIF',
    4 => 'OC\\Preview\\HEIC',
    5 => 'OC\\Preview\\BMP',
    6 => 'OC\\Preview\\XBitmap',
    7 => 'OC\\Preview\\MP3',
    8 => 'OC\\Preview\\TXT',
    9 => 'OC\\Preview\\Movie',
    10 => 'OC\\Preview\\MSOffice2003',
    11 => 'OC\\Preview\\MSOffice2007',
    12 => 'OC\\Preview\\MSOfficeDoc',
    13 => 'OC\\Preview\\OpenDocument',
    14 => 'OC\\Preview\\MarkDown',
    15 => 'OC\\Preview\\PDF',
  ),
  'datadirectory' => '/data',
  'instanceid' => '***********',
  'passwordsalt' => 'I**************',
  'secret' => '***********',
  'trusted_proxies' => 
  array (
    0 => '192.168.1.47',
  ),
  'overwrite.cli.url' => 'https://192.168.1.47:444',
  'overwriteprotocol' => 'https',
  'trusted_domains' => 
  array (
    0 => '192.168.1.47:444',
    1 => '*********',
  ),
  'dbtype' => 'mysql',
  'version' => '19.0.4.2',
  'dbname' => 'nextcloud',
  'dbhost' => '192.168.1.47:3306',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => '****1',
  'dbpassword' => '******',
  'installed' => true,
  'mail_smtpmode' => 'smtp',
  'mail_smtphost' => '*****',
  'mail_sendmailmode' => 'smtp',
  'mail_smtpport' => '465',
  'mail_from_address' => *****',
  'mail_domain' => '*****',
  'mail_smtpsecure' => 'ssl',
  'mail_smtpauth' => 1,
  'mail_smtpauthtype' => 'LOGIN',
  'mail_smtpname' => '******',
  'mail_smtppassword' => '*****',
  'app_install_overwrite' => 
  array (
    0 => 'occweb',
    1 => 'registration',
  ),
  'maintenance' => false,
  'updater.release.channel' => 'stable',
  'theme' => '',
  'loglevel' => 2,
);
My Nginx Proxy Manager config:
        > # run nginx in foreground
        > daemon off;
        > 
        > user abc;
        > 
        > # Set number of worker processes automatically based on number of CPU cores.
        > worker_processes 4;
        > 
        > # Enables the use of JIT for regular expressions to speed-up their processing.
        > pcre_jit on;
        > 
        > error_log /config/log/error.log warn;
        > 
        > # Includes files with directives to load dynamic modules.
        > include /etc/nginx/modules/*.conf;
        > 
        > events {
        > 	worker_connections  1024;
        > 	multi_accept on;
        > }
        > 
        > http {
        > 	include                       /etc/nginx/mime.types;
        > 	default_type                  application/octet-stream;
        > 	sendfile                      on;
        > 	server_tokens                 off;
        > 	tcp_nopush                    on;
        > 	tcp_nodelay                   on;
        > 	client_body_temp_path         /var/tmp/nginx/body 1;
        > 	client_body_buffer_size       1024m;
        > 	keepalive_timeout             120s;
        >         proxy_connect_timeout         3600s;
        >         proxy_send_timeout            3600s;
        >         proxy_read_timeout            3600s;
        >         proxy_buffering               off;
        > 	ssl_prefer_server_ciphers     on;
        > 	gzip                          on;
        > 	proxy_ignore_client_abort     off;
        > 	client_max_body_size          0;
        > 	server_names_hash_bucket_size 1024;
        > 	proxy_http_version            1.1;
        > 	proxy_set_header              X-Forwarded-Scheme $scheme;
        > 	proxy_set_header              X-Forwarded-For $proxy_add_x_forwarded_for;
        > 	proxy_set_header              Accept-Encoding "";
        > 	proxy_cache                   off;
        > 	proxy_cache_path              /var/lib/nginx/cache/public  levels=1:2 keys_zone=public-cache:30m max_size=192m;
        > 	proxy_cache_path              /var/lib/nginx/cache/private levels=1:2 keys_zone=private-cache:5m max_size=1024m;
        > 
        > 	log_format proxy '[$time_local] $upstream_cache_status $upstream_status $status - $request_method $scheme $host "$request_uri" [Client $remote_addr] [Length $body_bytes_sent] [Gzip $gzip_ratio] [Sent-to $server] "$http_user_agent" "$http_referer"';
        > 	log_format standard '[$time_local] $status - $request_method $scheme $host "$request_uri" [Client $remote_addr] [Length $body_bytes_sent] [Gzip $gzip_ratio] "$http_user_agent" "$http_referer"';
        > 
        > 
        > 	access_log /config/log/default.log proxy;
        > 	
        > 
        > 	# Dynamically generated resolvers file
        > 	include /etc/nginx/conf.d/include/resolvers.conf;
        > 
        > 	# Default upstream scheme
        > 	map $host $forward_scheme {
        > 		default http;
        > 	}
        > 
        > 	# Real IP Determination
        > 	# Docker subnet:
        > 	set_real_ip_from 172.0.0.0/8;
        > 	# NPM generated CDN ip ranges:
        > 	include conf.d/include/ip_ranges.conf;
        > 	# always put the following 2 lines after ip subnets:
        > 	real_ip_header X-Forwarded-For;
        > 	real_ip_recursive on;
        > 
        > 	# Files generated by NPM
        > 	include /etc/nginx/conf.d/*.conf;
        > 	include /data/nginx/default_host/*.conf;
        > 	include /data/nginx/proxy_host/*.conf;
        > 	include /data/nginx/redirection_host/*.conf;
        > 	include /data/nginx/dead_host/*.conf;
        > 	include /data/nginx/temp/*.conf;
        > 
        > 	# Custom
        > 	include /data/nginx/custom/http[.]conf;
        > }
        > 
        > stream {
        > 	# Files generated by NPM
        > 	include /data/nginx/stream/*.conf;
        > }
        > 
        > # Custom
        > include /data/nginx/custom/root[.]conf;