Module mod_put

Last change: 2004-02-18


Introduction

Download mod_put-2.0.tar.gz

Configuration

Integration with Apache 2.x - compiling and linking

The simple way is compiling with APXS. All you have to do is:
  1. Untar mod_put-2.0.tar.gz anywhere you wish
  2. Edit the Makefile file and change the path to /apache2/bin/apxs according your installation
  3. Build the module by typing make
  4. Install the binary with make install
  5. If you want the load command automatically added to your httpd.conf then type make installfirst
  6. Restart Apache2.

Example of a Configuration file

...

LoadModule negotiation_module  modules/mod_negotiation.o
LoadModule includes_module     modules/mod_include.o
LoadModule dir_module          modules/mod_dir.o
LoadModule cgi_module          modules/mod_cgi.o
...

#
# Miscellaneous modules
#

LoadModule put_module          modules/mod_put.o

httpd.conf Directives

Example

<Location /pub>
EnablePut On
AuthType Basic
AuthName Web publishing
AuthUserFile /www/etc/passwd
AuthGroupFile /www/etc/group
<Limit PUT>
require valid-user
</Limit>
</Location>

Remarks

Software which supports the PUT method


Even if this software seems to be quite stable now, please do not hesitate to send any comment, remark to
G. Knauf