Software /
code /
prosody-modules
Annotate
mod_storage_s3/README.md @ 6113:c0cb43817b7c
mod_compliance_latest: using module:log_status
diff --git a/mod_compliance_latest/mod_compliance_latest.lua b/mod_compliance_latest/mod_compliance_latest.lua
--- a/mod_compliance_latest/mod_compliance_latest.lua
+++ b/mod_compliance_latest/mod_compliance_latest.lua
@@ -1,6 +1,6 @@
local success, err = pcall(function() module:depends("compliance_2023") end)
if not success then
- module:log("error", "Error, can't load module: mod_compliance_2023. Is this module downloaded in a folder readable by prosody?")
- return 1, "Error: Couldn't load dependency mod_compliance_2023."
+module:log_status( "error", "Error, can't load module: mod_compliance_2023. Is this module downloaded into a folder readable by prosody?" )
+return false
end
author | Menel <menel@snikket.de> |
---|---|
date | Mon, 23 Dec 2024 14:09:56 +0100 |
parent | 5700:a5089978928a |
child | 6140:476717ab3cd9 |
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 ``` |