Add local file upload interfaces (#489)

* Add the alibaba cloud oss plugin

* Update oss plugin struct

* Add local upload
This commit is contained in:
Wu Clan
2025-02-21 20:18:35 +08:00
committed by GitHub
parent 440f324a3d
commit 9602e28429
12 changed files with 159 additions and 16 deletions
@@ -81,6 +81,7 @@ services:
volumes:
- ../nginx.conf:/etc/nginx/conf.d/default.conf:ro
- fba_static:/www/fba_server/backend/static
- fba_static_upload:/www/fba_server/backend/static/upload
networks:
- fba_network
+4
View File
@@ -48,4 +48,8 @@ server {
location /static {
alias /www/fba_server/backend/static;
}
location /static/upload {
alias /www/fba_server/backend/static/upload;
}
}