Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
upload module
- To: nginx-ru@xxxxxxxxx
- Subject: upload module
- From: Konstantin Svist <fry.kun@xxxxxxxxx>
- Date: Mon, 28 Mar 2011 17:35:17 -0700
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=3zWB3IJwTNam0Rcj8yjoJVUZpP0d8srUCVDbcREJcDM=; b=Tw/UGl+ghIRhgHrKPr3UmkKDIsCSNEEUXhHVras+uXvvV8rYKVNn+In7HIhYwa2MJt QrPJL8maNtmZBvoNUoBRBl7J1eDYJq9EQwlJrPN9LmOisnDQLV3vRQB0mV1i3hWj9ig9 SkF2uFeWhkVSZ8oYjKmtxVO8gM3Z3BlYwOe5M=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=M3AVsCbiDpVpe2CpY4vxQv5W+MglOExACwaVk4Kr8M6QZt1Mg5yd7AcKhxXaXu4t/n zMgwC2sRKNGhPUiqWsiE0y+Kd1hgqFYJ1RgC6XBZobqVXNuDLjVrt0qQi8p0hADS7YQq bKVhU/qWVIDJVyVVMHdud2ssinXWi7itqxn6A=
Что-то не могу заставить upload работать.. Все время получаю "The
connection was reset"
Конфига:
server {
listen 80;
location /upload {
client_max_body_size 100m;
access_log logs/other/upload.log;
error_log logs/other/upload_err.log;
upload_pass @test;
upload_store /tmp/upload 1;
upload_store_access user:r;
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";
# Inform backend about hash and size of a file
upload_aggregate_form_field "$upload_field_name.md5"
"$upload_file_md5";
upload_aggregate_form_field "$upload_field_name.size"
"$upload_file_size";
upload_pass_form_field "^submit$|^description$";
upload_cleanup 400 404 499 500-505;
}
location @test {
default_type text/html;
echo "OK";
}
location /uploadform {
default_type text/html;
echo '<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="submit" name="submit" value="Upload"><input type="hidden"
name="test" value="value"></form></body></html>';
}
}
Лога:
63.82.5.67 - - [28/Mar/2011:17:30:29 -0700] "POST /upload HTTP/1.1" 0 0
"http://testserver/uploadform" "Mozilla/5.0 (X11; Linux i686; rv:2.0)
Gecko/20100101 Firefox/4.0"
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|