feat(auth): add AWS SigV4 authentication and bucket policy support

This commit is contained in:
2026-02-17 16:50:04 +00:00
parent adf45dce2d
commit e36758f183
7 changed files with 72 additions and 85 deletions
-2
View File
@@ -28,7 +28,6 @@ use crate::xml_response;
pub struct S3Server {
store: Arc<FileStore>,
config: S3Config,
shutdown_tx: watch::Sender<bool>,
server_handle: tokio::task::JoinHandle<()>,
}
@@ -110,7 +109,6 @@ impl S3Server {
Ok(Self {
store,
config,
shutdown_tx,
server_handle,
})