# HG changeset patch # User Kim Alvefur # Date 1585588504 -7200 # Node ID 5741e6511f3d7587b878a5fdaa264e656347031f # Parent cacd753848b2b133f16e0ed5675dd88cca122f79 mod_http_upload_external: Discourage loading via modules_enabled diff -r cacd753848b2 -r 5741e6511f3d mod_http_upload_external/README.markdown --- a/mod_http_upload_external/README.markdown Mon Mar 30 16:29:44 2020 +0200 +++ b/mod_http_upload_external/README.markdown Mon Mar 30 19:15:04 2020 +0200 @@ -26,8 +26,16 @@ Configuration ============= -Add `"http_upload_external"` to modules_enabled in your global section, or under the host(s) you wish -to use it on. +The module can be added as a new Component definition: + +``` {.lua} +Component "upload.example.org" "http_upload_external" +http_upload_external_base_url = "https://your.example.com/upload/service" +http_upload_external_secret = "your shared secret" +``` + +It should **not** be added to modules_enabled. + External URL ------------