Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: upload module
- To: nginx-ru@xxxxxxxxx
- Subject: Re: upload module
- From: Konstantin Svist <fry.kun@xxxxxxxxx>
- Date: Tue, 05 Apr 2011 15:13:58 -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:references:in-reply-to:content-type :content-transfer-encoding; bh=tnzbb+JhCKQXhsfSusYDkKQ6pK/JvLzc6cKgjDxmV7A=; b=gudkh12peeIBsQYRmqmnMn00inbDDj/tNEMQQm7i2ee+moHC1ahgOro+sZKvTIZzbG 3O2A5V9GG8Gy4p+UHPJ29PE5pCIXgsOvfyMUFDxuhzBhjBJH1YhSJ3jsEdVjsfK2w581 vhfVfrmKntGDl6fF7X3zxPCkFAoFsZaE+LsVU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=hxzxf1lIjmh+/9gFvjAdksjBh4VqVdEm2QJnc1kzb/+Hr8YbqTnjtR9MLdG0FLjney Gn4KGA0ZdC7MjDg1e0Rp0scBZZ8Zge7yDr64K7WhOUeCysL1jh8lPPFEXMAVyykdaRop mHH+aWG76pRgHX6YZFjo9xB7dQxGow48iNVvw=
- In-reply-to: <4D9B570D.5000900@xxxxxxxxxxx>
- References: <16761803.3042.1302004277071.JavaMail.root@xxxxxxxxxxxxxx> <4D9B2055.9030704@xxxxxxxxx> <4D9B570D.5000900@xxxxxxxxxxx>
Так вот в чем проблема -- я из git-а вытаскивал master -- а он 2.1.1
2.2.0 работает
On 04/05/2011 10:53 AM, Valery Kholodkov wrote:
Приветствую!
Читайте документацию, смотрите примеры.
Вот мой сервис, который работает на nginx/0.9.5 и upload module 2.2.0:
http://wb.uniquelessons.com/
Как проверить: жмем Create Whiteboard, создаем доску, далее кликаем
Load Image, выбираем картинку в jpeg, жмем Upload, далее ещё раз Load
Image. Если после нажатия Upload появилась информация о файле, то всё
работает.
Если что-то не так, пишите.
Konstantin Svist пишет:
А так даже файл не сохраняет...
On 04/05/2011 04:51 AM, Valery Kholodkov wrote:
Прошу прощения. Аргумент upload_pass не может быть абсолютным URL.
Нужно указать локейшн или именованный локейшн.
----- Valery Kholodkov<valery+nginxru@xxxxxxxxxxx> wrote:
Аргумент upload_pass ее может быть абсолютным URL.
----- Konstantin Svist<fry.kun@xxxxxxxxx> wrote:
Всё никак не идёт
nginx/0.9.5
logs attached
On 03/30/2011 03:54 AM, Valery Kholodkov wrote:
Не обязаельно. Можно просто сделать дамп запроса с помощью nc.
----- Konstantin Svist<fry.kun@xxxxxxxxx> wrote:
Пробовал с
location @test {
proxy_pass http://localhost:8080;
}
но без сервера на 8080. Там нужна живая страница чтобы начать?
On 03/29/2011 12:40 AM, Valery Kholodkov wrote:
Попробуйте без echo.
Konstantin Svist пишет:
Что-то не могу заставить 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
|