# HG changeset patch # User Kim Alvefur # Date 1441102963 -7200 # Node ID e5d723afd6ba891514442b85f81fc7cd79083ec8 # Parent abacf6698d97d5db5d9776a49f628c3bfa053739 mod_http_upload: Add README diff -r abacf6698d97 -r e5d723afd6ba mod_http_upload/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_http_upload/README.markdown Tue Sep 01 12:22:43 2015 +0200 @@ -0,0 +1,35 @@ +Introduction +============ + +This module provides a space for clients to upload files over HTTP, as +used by [Conversations](http://conversations.im/). + +Configuration +============= + +The module can either be configured as a component or added to an +existing host or component. + +Component +--------- + +Standalone component: + + Component "upload.example.org" "http_upload" + +Existing component +------------------ + + Component "proxy.example.org" "proxy65" + modules_enabled = { + "http_upload"; + } + +On VirtualHosts +--------------- + + -- In the Global section or under a specific VirtualHosts line + modules_enabled = { + -- other modules + "http_upload"; + }