-
Notifications
You must be signed in to change notification settings - Fork 5
docs: document public bucket access and fix custom domain CNAME target #406
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
Changes from 1 commit
55b222b
b1e790d
9cd87f7
dfba3d3
1e87ca2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -65,6 +65,31 @@ By default, buckets are private. You can create a public bucket by passing the | |||||
| fly storage create --public | ||||||
| ``` | ||||||
|
|
||||||
| ### Accessing objects in a public bucket | ||||||
|
|
||||||
| Objects in a public bucket can be read by anyone without authentication. Each | ||||||
| public bucket is accessible at `bucket-name.fly.storage.tigris.dev`: | ||||||
|
|
||||||
| ```text | ||||||
| https://bucket-name.fly.storage.tigris.dev/path/to/object.jpg | ||||||
| ``` | ||||||
|
|
||||||
| For example, if you created a public bucket called `my-assets` and uploaded | ||||||
| `logo.png`, anyone can access it at: | ||||||
|
|
||||||
| ```text | ||||||
| https://my-assets.fly.storage.tigris.dev/logo.png | ||||||
| ``` | ||||||
|
|
||||||
| No credentials or signed URLs are needed — the URL works directly in a browser, | ||||||
| `curl`, `wget`, `<img>` tags, etc. | ||||||
|
|
||||||
| Public buckets are also accessible via the Tigris-managed domains | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Per the project's documentation style rule, the definite article 'the' should not appear directly before 'Tigris'. Rephrase "the Tigris-managed domains" to drop the article.
Suggested change
Rule Used: Don't use the definite article 'the' before 'Tigri... (source) Learnt From Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||
| (`bucket-name.t3.tigrisblob.io`, `bucket-name.t3.tigrisfiles.io`, | ||||||
| `bucket-name.t3.tigrisbucket.io`). See the | ||||||
| [Public Bucket](/docs/buckets/public-bucket/) guide for full details including | ||||||
| custom domains. | ||||||
|
|
||||||
| ### Updating bucket public access | ||||||
|
|
||||||
| You can make a private bucket public or a public bucket private by using the | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok so the anonymous access for public access only works on the new .io domains for new users.
The customer in question is an existing customer who are not restricted. So probably this tigris.dev domain doesn't need to be here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this comment was on an outdated version?