Nginx upload module (v 2.0.2)

rus eng

A module for nginx web server for handling file uploads using multipart/form-data encoding (RFC 1867).

Description

The module parses request body storing all files being uploaded to a directory specified by upload_store directive. The files are then being stripped from body and altered request is then passed to a location specified by upload_pass directive, thus allowing arbitrary handling of uploaded files. Each of file fields are being replaced by a set of fields specified by upload_set_form_field directive. The content of each uploaded file then could be read from a file specified by $upload_tmp_path variable or the file could be simply moved to ultimate destination. Temporary files created by module are being removed only in case of request body parse errors or disk write errors.

NOTE: The module uses blocking file writes, therefore server running it should utilize tens or hundreds of workers depending on the load to prevent network IO starvation.

Configuration directives


syntax: upload_pass <location>
default: none
severity: mandatory
context: server, location

Specifies location to pass request body to. File fields will be stripped and replaced by fields, containig necessary information to handle uploaded files.


syntax: upload_store <directory>
default: none
severity: mandatory
context: server, location

Specifies a directory to which temporary files will be saved to.


syntax: upload_store_access <mode>
default: user:rw
severity: optional
context: server, location

Specifies access mode which will be used to create temporary files.


syntax: upload_set_form_field <name> <value>
default: none
severity: optional
context: server, location

Specifies a form field(s) to generate for each uploaded file in request body passed to backend. Both name and value could contain following special variables:

These variables are valid only during processing of one part of original request body.

example:
upload_set_form_field $upload_field_name.name "$upload_file_name";
upload_set_form_field $upload_field_name.content_type "$upload_content_type";
upload_set_form_field $upload_field_name.path "$upload_tmp_path";
		

syntax: upload_buffer_size <size>
default: size of memory page in bytes
severity: optional
context: server, location

Size in bytes of write buffer which will be used to accumulate file data and write it to disk. This directive is intended to be used to compromise memory usage vs. syscall rate.


syntax: upload_max_part_header_len <size>
default: 512
severity: optional
context: server, location

Specifies maximal length of part header in bytes. Determines the size of the buffer which will be used to accumulate part headers.


Example configuration

server {
    client_max_body_size 100m;
    listen       80;
    server_name  localhost;

    # Upload form should be submitted to this location
    location /upload {
        # Pass altered request body to this location
        upload_pass   /test;

        # Store files to this location
        upload_store /tmp;

        # Set specified fields in request body
        upload_set_form_field $upload_field_name.name "$upload_file_name";
        upload_set_form_field $upload_field_name.content_type "$upload_content_type";
        upload_set_form_field $upload_field_name.path "$upload_tmp_path";
    }

    # Pass altered request body to a proxy
    location /test {
        proxy_pass   http://localhost:8080;
    }
}
        

Example form

<html>
<head>
<title>Test upload</title>
</head>
<body>
<h2>Select files to upload</h2>
<form name="upload" method="POST" enctype="multipart/form-data" action="/upload">
<input type="file" name="file1"><br>
<input type="file" name="file2"><br>
<input type="file" name="file3"><br>
<input type="file" name="file4"><br>
<input type="file" name="file5"><br>
<input type="file" name="file6"><br>
<input type="submit" name="submit" value="Upload">
<input type="hidden" name="test" value="value">
</form>
</body>
</html>
        

Download

Version 2.0.2: tar.gz zip MD5 SHA1
or go to download area

Browse repository

http://svn.myau.su/

How to use

Download sources from one of the links above. Unpack the archive:

tar xvzf nginx_upload_module-2.0.1.tar.gz

Configure nginx with additional module:

cd <path to nginx sources>
./configure --add-module=<path to upload module sources>
make
make install

Nginx

nginx -- is a web-server, developed by Igor Sysoev.

Licence

The above-described module is an addition to nginx web-server, nevertheless they are independent products. The licence of above-described module is BSD You should have received a copy of licence along with the source code.

Contact author

Valery Kholodkov valery+nginx@grid.net.ru
Please use address extension while composing an Email to me.


Copyright (C) 2006, 2008 Valery Kholodkov
Module copyright notices see in module sources.