dev: move storage metadata collection to background job (#5818)

* fix: move storage metadata collection to background job

* fix: docker compose and env

* fix: archive endpoint
This commit is contained in:
Nikhil 2024-10-16 13:55:49 +05:30 committed by GitHub
parent cc613e57c9
commit 9b85306359
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 71 additions and 32 deletions

View file

@ -68,12 +68,12 @@ http {
proxy_pass http://space:3000/spaces/;
}
location /${BUCKET_NAME}/ {
location /${BUCKET_NAME} {
proxy_http_version 1.1;
proxy_set_header Upgrade ${dollar}http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host ${dollar}http_host;
proxy_pass http://plane-minio:9000/uploads/;
proxy_pass http://plane-minio:9000/${BUCKET_NAME};
}
}
}