Mercurial > prosody-modules
view mod_storage_s3/README.md @ 5798:fdf3056021dc
mod_http_oauth2: Tweak fallback error text
Since the oauth error is more like the error condition, a symbolic error
code, not the most human-friendly. Many error cases do have
human-readable error descriptions that should be fine on their own, or
changed to be.
As a fallback, capitalize the error name.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 23 Dec 2023 00:01:30 +0100 |
parents | a5089978928a |
children |
line wrap: on
line source
--- labels: - 'Stage-Alpha' summary: Cloud Native Storage ... ::: {.alert .alert-danger} 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 is not yet complete. For now, this module is primarily suited for testing and finding areas where async work is incomplete. ::: This module provides storage in Amazon S3 compatible things. It has been tested primarily with MinIO. ``` lua s3_bucket = "prosody" s3_base_uri = "http://localhost:9000" s3_region = "us-east-1" s3_access_key = "YOUR-ACCESS-KEY-HERE" s3_secret_key = "YOUR-SECRET-KEY-HERE" ```