diff --git a/seatable/Chart.yaml b/seatable/Chart.yaml index acbce3a4..3b159f46 100644 --- a/seatable/Chart.yaml +++ b/seatable/Chart.yaml @@ -3,4 +3,4 @@ appVersion: Enterprise:6.2.12 description: SeaTable is a no-code database and app-building platform. name: seatable type: application -version: 1.0.28 +version: 1.0.29 diff --git a/seatable/OlaresManifest.yaml b/seatable/OlaresManifest.yaml index 95d86625..0840d40f 100644 --- a/seatable/OlaresManifest.yaml +++ b/seatable/OlaresManifest.yaml @@ -12,7 +12,7 @@ metadata: description: SeaTable is a no-code database and app-building platform. icon: https://app.cdn.olares.com/appstore/seatable/icon.png appid: seatable - version: '1.0.28' + version: '1.0.29' title: SeaTable categories: - Productivity_v112 @@ -55,6 +55,8 @@ spec: - Filters, sorts, charts and pivotal tables to visualize and analyze data. upgradeDescription: | + v1.0.29: Raise seatableweb reverse-proxy upload limit to 200MB (`client_max_body_size 200m`) so attachment uploads larger than 1MB are not rejected with HTTP 413 after the official OpenResty proxy switch. + Switch the reverse-proxy image from Bitnami OpenResty (`beclab/aboveos-bitnami-openresty:1.25.3-2`) to the official OpenResty image `openresty/openresty:1.29.2.5-bookworm-fat`. Align nginx config mounts and log paths with the official image layout (`/etc/nginx/conf.d/default.conf`, `/usr/local/openresty/nginx/logs/...`), and drop Bitnami-specific `OPENRESTY_CONF_FILE` wiring. diff --git a/seatable/i18n/en-US/OlaresManifest.yaml b/seatable/i18n/en-US/OlaresManifest.yaml index d55850e7..f0fec1e2 100644 --- a/seatable/i18n/en-US/OlaresManifest.yaml +++ b/seatable/i18n/en-US/OlaresManifest.yaml @@ -3,6 +3,8 @@ metadata: description: SeaTable is a no-code database and app-building platform. spec: upgradeDescription: | + v1.0.29: Raise seatableweb reverse-proxy upload limit to 200MB (`client_max_body_size 200m`) so attachment uploads larger than 1MB are not rejected with HTTP 413 after the official OpenResty proxy switch. + Switch the reverse-proxy image from Bitnami OpenResty (`beclab/aboveos-bitnami-openresty:1.25.3-2`) to the official OpenResty image `openresty/openresty:1.29.2.5-bookworm-fat`. Align nginx config mounts and log paths with the official image layout (`/etc/nginx/conf.d/default.conf`, `/usr/local/openresty/nginx/logs/...`), and drop Bitnami-specific `OPENRESTY_CONF_FILE` wiring. diff --git a/seatable/i18n/zh-CN/OlaresManifest.yaml b/seatable/i18n/zh-CN/OlaresManifest.yaml index 7bc8d49a..c35d77c6 100644 --- a/seatable/i18n/zh-CN/OlaresManifest.yaml +++ b/seatable/i18n/zh-CN/OlaresManifest.yaml @@ -4,6 +4,8 @@ metadata: spec: upgradeDescription: | + v1.0.29: 将 seatableweb 反向代理上传限制设为 200MB(`client_max_body_size 200m`),避免切换官方 OpenResty 代理后因默认 1MB 限制导致附件上传返回 HTTP 413。 + 将反向代理镜像从 Bitnami OpenResty(`beclab/aboveos-bitnami-openresty:1.25.3-2`)切换为官方 OpenResty 镜像 `openresty/openresty:1.29.2.5-bookworm-fat`。 同步调整 nginx 配置挂载与日志路径以匹配官方镜像布局(`/etc/nginx/conf.d/default.conf`、`/usr/local/openresty/nginx/logs/...`),并移除 Bitnami 专用的 `OPENRESTY_CONF_FILE` 配置。 diff --git a/seatable/templates/clientproxy.yaml b/seatable/templates/clientproxy.yaml index b3471170..3e409761 100644 --- a/seatable/templates/clientproxy.yaml +++ b/seatable/templates/clientproxy.yaml @@ -17,6 +17,8 @@ data: proxy_set_header upgrade $http_upgrade; proxy_set_header connection "upgrade"; + client_max_body_size 200m; + location / { proxy_hide_header Access-Control-Allow-Origin; proxy_hide_header Access-Control-Allow-Methods;