Mercurial > prosody-modules
diff mod_migrate_http_upload/README.markdown @ 4468:5d8f9cc5c6fb
mod_migrate_http_upload: Upload data converter to mod_http_file_share
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 24 Feb 2021 16:55:46 +0100 |
parents | |
children | 6844733ad2f5 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_migrate_http_upload/README.markdown Wed Feb 24 16:55:46 2021 +0100 @@ -0,0 +1,31 @@ +--- +summary: mod_http_upload to mod_http_file_share migrator +labels: +- Stage-Alpha +--- + + +This is a migration script for converting records of [mod_http_upload] +into the format used by the new [mod_http_file_share] which will be +available with Prosody 0.12 (currently in trunk). + +# Usage + +If your main `VirtualHost` is called "example.com" and your HTTP upload +`Component` is called "upload.example.com", then this command would +convert records of existing uploads via [mod_http_upload] to +[mod_http_file_share][doc:modules:mod_http_file_share]: + +```bash +sudo prosodyctl mod_migrate_http_upload upload.example.com example.com +``` + +In order to preserve URLs you will need to configure the +[path][doc:http#path_configuration] to be the same as mod_http_upload: + +```lua +Component "upload.example.com" "http_file_share" +http_paths = { + file_share = "/upload" +} +```