본문으로 건너뛰기

© 2026 Molayo

Vercel중요헤드라인2026. 04. 24. 17:26

Vercel Blob, 이제 민감한 파일도 안전하게 보관하는 Private Storage 베타 출시

요약

개발자들이 가장 우려하는 데이터 보안 문제를 해결할 Vercel Blob이 'Private Storage' 기능을 공개 베타로 출시했습니다. 이 기능은 계약서, 인보이스 등 인증이 필요한 민감 데이터를 일반적인 퍼블릭 URL 노출 없이 안전하게 저장하고 관리할 수 있게 합니다. Private Storage를 사용하려면 모든 작업에 인증(Authentication)이 필수이며, SDK에서 `uploadAccess: 'private'` 옵션을 사용하여 업로드 및 다운로드를 처리해야 합니다. 이는 데이터 보안을 최우선으로 하는 엔터프라이

핵심 포인트

  • Vercel Blob의 Private Storage 기능이 공개 베타로 출시되어 민감 파일(계약서, 인보이스 등)의 안전한 저장이 가능해졌습니다.
  • Private Storage는 모든 작업에 인증을 요구하여 일반적인 퍼블릭 URL 노출 위험을 원천적으로 차단합니다.
  • CLI를 통해 스토어를 생성하고 환경 변수(`BLOB_READ_WRITE_TOKEN`)로 연결하면, SDK가 배포 시 자동으로 인증됩니다.
  • 파일 업로드 시 `blob.put()` 메서드에 `uploadAccess: 'private'` 옵션을 사용해야 하며, 다운로드(Retrieval) 역시 인증 기반으로 처리됩니다.

Private storage for Vercel Blob, now available in public beta

Vercel Blob now supports private storage for sensitive files like contracts, invoices, and internal reports. Private storage requires authentication for all operations, preventing exposure via public URLs. Public storage allows public reads for media assets, while private storage requires authentication.

Create a private store via the [Storage dashboard] or with the CLI:

# CLI command

When created inside a linked Vercel project, the CLI prompts you to connect the store, automatically adding the environment variable. The SDK uses this variable to authenticate operations in your deployments.

BLOB_READ_WRITE_TOKEN

SDK installation

To upload, use blob.put() with the uploadAccess: 'private' option.

Upload example

// ... code snippet for upload

To download, use the blob.get() method to stream files.

Retrieval example

// ... code snippet for retrieval

Private storage is in beta on all plans with standard [Vercel Blob pricing]. Learn more about private storage.

AI 자동 생성 콘텐츠

본 콘텐츠는 Vercel AI의 원문을 AI가 자동으로 요약·번역·분석한 것입니다. 원 저작권은 원저작자에게 있으며, 정확한 내용은 반드시 원문을 확인해 주세요.

원문 바로가기
3

댓글

0