Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion seatable/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion seatable/OlaresManifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions seatable/i18n/en-US/OlaresManifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions seatable/i18n/zh-CN/OlaresManifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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` 配置。
Expand Down
2 changes: 2 additions & 0 deletions seatable/templates/clientproxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down