Software /
code /
prosody-modules
Annotate
mod_storage_s3/README.md @ 5931:d194d1012fd3
Updating dox for mod_rest. Ideas expressed / clarified:
1) Making clear that mod_rest isn't to be installed under VirtualHosts AND as a component.
2) Understanding some of the implications of this choice:
A) Changes to user authentication
B) How it affects subdomains
3) More consistent use of domain names for clarity.
4) Using different heading sizes to show scope of section.
Essentially, I added all the tidbits I had to clarify in getting this to work in my
own example.
author | Ben Smith <bens@effortlessis.com> |
---|---|
date | Mon, 13 May 2024 13:25:13 -0700 |
parent | 5700:a5089978928a |
rev | line source |
---|---|
5700 | 1 --- |
2 labels: | |
3 - 'Stage-Alpha' | |
4 summary: Cloud Native Storage | |
5 ... | |
6 | |
7 ::: {.alert .alert-danger} | |
8 This storage driver is fully async and requires that all storage access happens in an async-compatible context. As of 2023-10-14 this work in Prosody | |
9 is not yet complete. For now, this module is primarily suited for testing and finding areas where async work is incomplete. | |
10 ::: | |
11 | |
12 This module provides storage in Amazon S3 compatible things. It has been tested primarily with MinIO. | |
13 | |
14 ``` lua | |
15 s3_bucket = "prosody" | |
16 s3_base_uri = "http://localhost:9000" | |
17 s3_region = "us-east-1" | |
18 s3_access_key = "YOUR-ACCESS-KEY-HERE" | |
19 s3_secret_key = "YOUR-SECRET-KEY-HERE" | |
20 ``` |