mod_http_upload/README.markdown
author Kim Alvefur <zash@zash.se>
Fri, 04 Sep 2015 00:23:46 +0200
changeset 1831 9376e870f0e1
parent 1820 e5d723afd6ba
child 1844 3bd265f7a95f
permissions -rw-r--r--
mod_http_index: Move template out into a file and make it configurable

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";
    }