ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: проблема с закачкой файлов


  • To: nginx-ru@xxxxxxxxx
  • Subject: Re: проблема с закачкой файлов
  • From: "Alexey Karagodov" <karagodov@xxxxxxxxx>
  • Date: Mon, 3 Sep 2007 14:16:47 +0400
  • Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=GD1Rh9uap+85FiM9C5vkVQlS8cetSNaV5ps8dCocFV7iL7nZ+ypjseggZOkCAt/PP3batJQZ/vn5Zv6M9fAUloYy+tMS456v8rZ5bJe6IteLqXEOHiz/+VLXI/XtZyA5yE/Hrb6QjqRV37/gEZii7rc8tej+frlpTn2CHdbhsQ8=
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=emKTqeKhoCWKEG71swnktyYnNSNjDjFLwHUwp/yt4VY+9yZr7QBN6FWV+lzIR61UPrEjpp0OTknCxGn6nTFX3UPIK2gyQrCaE7pWxV+4jT5bwAntovjDznfaCmCd86gyaS4wVjmmnphJTT5vVVXMNF2U74V9P8CLoXZWYVJxQic=
  • In-reply-to: <46DBB344.1000801@xxxxxxxxxxxx>
  • References: <46DBB344.1000801@xxxxxxxxxxxx>

попробуй в хттп всунуть client_max_body_size       10m;
просто wget-ом (без извращений) файл качается?

2007/9/3, Vasiliy Tolstov <v.tolstov@xxxxxxxxxxxx>:
> Пытаюсь закачать файл размеро 3072000 байт. Через форму вида
> <form method="post" enctype="multipart/form-data" action="my.php">
> <input type="file" name="file">
> <input type="submit" value="Submit">
> </form>
>
> Файл, my.php делает следующее
>
> if (is_uploaded_file($_FILES['file']['tmp_name'])){
> echo "file is uploaded";
> }
> else {
> echo "Error";
> }
>
> После ожидания примерно в минуту выдается ошибка
> 413 Request Entity Too Large
> nginx/0.5.7
>
> Конфиг у nginx следующий
>
> user  www www;
> worker_processes  2;
>
> error_log  /var/log/nginx-error.log error;
> pid        /var/run/nginx.pid;
>
> events {
>     worker_connections  2000;
>     use kqueue;
> }
>
> http {
>     include       mime.types;
>     default_type  text/html;
>     sendfile  on;
>     access_log  off;
>     large_client_header_buffers 32 16k;
>     client_header_buffer_size   2k;
>     client_header_timeout  600;
>     client_body_timeout    600;
>     ignore_invalid_headers off;
>     server_names_hash_bucket_size 128;
>     server_names_hash_max_size 2048;
>
>     server {
>          listen          127.0.0.1:888;
>          server_name     localhost;
>          access_log      off;
>          location = /stub_status {
>              stub_status on;
>              allow       127.0.0.0/8;
>              deny        all;
>          }
>          location / { deny all; }
>     }
>
>     server {
>         include listen.conf;
>         location / {
>             access_log  off;
>             proxy_pass  http://127.0.0.1/;
>
>             client_max_body_size       10m;
>             client_body_buffer_size    512k;
>
>             proxy_connect_timeout      600;
>             proxy_send_timeout         300;
>             proxy_read_timeout         300;
>             proxy_send_lowat           8191;
>
>             proxy_redirect     off;
>
>             proxy_set_header   Host             $host;
>
>             proxy_set_header   X-Real-IP        $remote_addr;
>
>             proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
>
>             proxy_buffer_size          4k;
>             proxy_buffers              4 32k;
>             proxy_busy_buffers_size    64k;
>             proxy_temp_file_write_size 64k;
>
>             proxy_temp_path            /tmp/nginx;
>         }
>     }
>
>     include move_user.conf;
>     include deny_user.conf;
> }
>
>
>
>
>
> --
> С уважением, Vasily Tolstov
>
>
>


 




Copyright © Lexa Software, 1996-2009.