# Original source by: Lyonel Vincent <vincent@hpwww.ec-lyon.fr>
# Original Home: http://hpwww.ec-lyon.fr/~vincent/apache/mod_put.html
# Unix port by: Guenter Knauf <info@gknw.de>
# Home: http://www.gknw.net/development/apache/
#
# The following is only for a quick setup! 
#

# Add to your httpd.conf

LoadModule put_module modules/mod_put.so

#
# Configuration for mod_put
<IfModule mod_put.c>
    <Location /publish>
        PUT_EnablePut On
        PUT_EnableDelete Off
        # PUT_BlockSize 2048
        # PUT_DirMask 007
        # PUT_FileMask 007
        <Limit PUT DELETE>
            # SSLRequireSSL
            AuthType Basic
            AuthName "Web publishing"
            AuthUserFile /apache2/conf/passwd
            # AuthGroupFile /apache2/conf/group
            require valid-user
        </Limit>
    </Location>
</IfModule>
# End of mod_put.
