fix: change nginx timeout as 10min (#1222)

* fix: change nginx timeout as 10min

* Update aliyun-container-registry.yml

Co-authored-by: chenos <chenlinxh@gmail.com>
This commit is contained in:
SemmyWong 2022-12-09 07:06:00 +08:00 committed by GitHub
parent cabe8a51a2
commit 28b71dcda3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,7 @@ on:
branches:
- '**'
paths:
- 'docker/nocobase/**'
- 'packages/**'
jobs:

View File

@ -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;
}
}