From 28b71dcda3c28985a7d97503a05a15247312f81d Mon Sep 17 00:00:00 2001 From: SemmyWong <67748948+semmywong@users.noreply.github.com> Date: Fri, 9 Dec 2022 07:06:00 +0800 Subject: [PATCH] fix: change nginx timeout as 10min (#1222) * fix: change nginx timeout as 10min * Update aliyun-container-registry.yml Co-authored-by: chenos --- .github/workflows/aliyun-container-registry.yml | 1 + docker/nocobase/nocobase.conf | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/aliyun-container-registry.yml b/.github/workflows/aliyun-container-registry.yml index c1c0545165..c2e04532b0 100644 --- a/.github/workflows/aliyun-container-registry.yml +++ b/.github/workflows/aliyun-container-registry.yml @@ -11,6 +11,7 @@ on: branches: - '**' paths: + - 'docker/nocobase/**' - 'packages/**' jobs: diff --git a/docker/nocobase/nocobase.conf b/docker/nocobase/nocobase.conf index a65286cf63..1f1eb07059 100644 --- a/docker/nocobase/nocobase.conf +++ b/docker/nocobase/nocobase.conf @@ -28,5 +28,9 @@ server { proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; } }