no message

This commit is contained in:
kuaifan 2025-07-29 21:55:17 +08:00
parent 8ffe64ad8e
commit a562bfdb08
2 changed files with 4 additions and 4 deletions

View File

@ -96,7 +96,7 @@ services:
appstore:
container_name: "dootask-appstore-${APP_ID}"
privileged: true
image: "dootask/appstore:0.2.1"
image: "dootask/appstore:0.2.2"
volumes:
- shared_data:/usr/share/dootask
- /var/run/docker.sock:/var/run/docker.sock

View File

@ -35,13 +35,13 @@ server {
add_header Access-Control-Expose-Headers "Date, Last-Modified, Age" always;
location / {
if ($uri ~* ^/uploads/.*\.(jpe?g|png|gif|webp)$) {
add_header Access-Control-Allow-Origin "http://localhost:2222" always;
if ($uri ~* "^/uploads/.*\.(jpe?g|png|gif|webp)$") {
add_header Access-Control-Allow-Origin "http://localhost:22223" always;
add_header Access-Control-Allow-Methods "GET, OPTIONS" always;
add_header Access-Control-Allow-Headers "DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization" always;
add_header Access-Control-Allow-Credentials "true" always;
}
try_files $uri @laravels;
}