Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add byob post #1155

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions docs/src/app/blog/(posts)/byob/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import { ArticleLayout } from "@/app/blog/_components/layouts";
import { blogMetadata } from "@/lib/utils";

export const article = {
authors: [
{
name: "Ping Team",
role: "Ping Labs",
src: "https://avatars.githubusercontent.com/u/89191727?s=200&v=4",
href: "https://x.com/pingdotgg",
},
],
date: "2025-01-30",
title: "Own Your Data: Introducing Bring Your Own Bucket",
description:
"Store files directly in your own storage infrastructure with UploadThing's new BYOB feature. Maintain complete control over your data while keeping our great developer experience.",
tags: ["product"],
image:
"https://s40vlb3kca.ufs.sh/f/7v4pu1gTNmoZDLb3rL51tTUGHE3b4kLMF0PAeRIoiXBapc7O",
};

export const metadata = blogMetadata(article);

export const dynamic = "force-static";

export default (props) => <ArticleLayout article={article} {...props} />;

## Bring Your Own Bucket (BYOB)

Following up our [recent launch of usage-based pricing](/blog/usage-based),
we're excited to release our highly-requested BYOB feature, giving you full
control over your file storage while maintaining UploadThing's superior
developer experience. With BYOB, you can:

- Store files directly in your own storage infrastructure
- Meet strict compliance requirements
- Maintain complete control over your data

For the initial release, we are launching with support for AWS S3 buckets, with
more storage providers coming soon based on user demand.

### Getting Started with BYOB

BYOB is only available on new apps. Go the the dashboard and create a new app,
select the BYOB tier and follow the instructions to connect your S3 bucket.

For questions or support, reach out to our team at
[[email protected]](mailto:[email protected]).
Loading