[PR #261] [MERGED] feat: Support Alibaba Cloud OSS #407

Closed
opened 2026-02-16 01:15:52 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-plugin-daemon/pull/261
Author: @bravomark
Created: 5/7/2025
Status: Merged
Merged: 5/7/2025
Merged by: @Yeuoly

Base: mainHead: feat/support-aliyun-OSS


📝 Commits (2)

📊 Changes

7 files changed (+264 additions, -1 deletions)

View changed files

📝 .env.example (+8 -0)
📝 go.mod (+1 -0)
📝 go.sum (+2 -0)
internal/oss/aliyun/aliyun_oss_storage.go (+215 -0)
📝 internal/oss/type.go (+1 -0)
📝 internal/server/server.go (+11 -0)
📝 internal/types/app/config.go (+26 -1)

📄 Description

Support Alibaba Cloud OSS(Object Storage Service)

  • .env.example
ALIYUN_OSS_REGION=cn-beijing
ALIYUN_OSS_ENDPOINT=https://oss-cn-beijing.aliyuncs.com
ALIYUN_OSS_ACCESS_KEY_ID=XXXX
ALIYUN_OSS_ACCESS_KEY_SECRET=XXXX
ALIYUN_OSS_AUTH_VERSION=v4
ALIYUN_OSS_PATH=plugins/

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-plugin-daemon/pull/261 **Author:** [@bravomark](https://github.com/bravomark) **Created:** 5/7/2025 **Status:** ✅ Merged **Merged:** 5/7/2025 **Merged by:** [@Yeuoly](https://github.com/Yeuoly) **Base:** `main` ← **Head:** `feat/support-aliyun-OSS` --- ### 📝 Commits (2) - [`099851e`](https://github.com/langgenius/dify-plugin-daemon/commit/099851e5b82699c71c422aad34c530ca3f767836) feat: support aliyun OSS - [`b582ca2`](https://github.com/langgenius/dify-plugin-daemon/commit/b582ca20dd6d606b24b2c882d68eeca678591003) feat: support aliyun OSS ### 📊 Changes **7 files changed** (+264 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+8 -0) 📝 `go.mod` (+1 -0) 📝 `go.sum` (+2 -0) ➕ `internal/oss/aliyun/aliyun_oss_storage.go` (+215 -0) 📝 `internal/oss/type.go` (+1 -0) 📝 `internal/server/server.go` (+11 -0) 📝 `internal/types/app/config.go` (+26 -1) </details> ### 📄 Description Support Alibaba Cloud OSS(Object Storage Service) - .env.example ```properties ALIYUN_OSS_REGION=cn-beijing ALIYUN_OSS_ENDPOINT=https://oss-cn-beijing.aliyuncs.com ALIYUN_OSS_ACCESS_KEY_ID=XXXX ALIYUN_OSS_ACCESS_KEY_SECRET=XXXX ALIYUN_OSS_AUTH_VERSION=v4 ALIYUN_OSS_PATH=plugins/ ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 01:15:52 -05:00
yindo closed this issue 2026-02-16 01:15:52 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-plugin-daemon#407