From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.3 Message-ID: <4820E616.3040401@rambler.ru> Date: Wed, 07 May 2008 03:13:26 +0400 From: =?KOI8-R?Q?=E9=CC=D8=C6=C1=D4?= User-Agent: Thunderbird 2.0.0.12 (X11/20080327) MIME-Version: 1.0 To: ALT Linux Community general discussions References: <48205E58.6060502@rambler.ru> <20080506174414.3beaa587@batyrshin.ieml.ru> <48207A7F.7040108@rambler.ru> In-Reply-To: <48207A7F.7040108@rambler.ru> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Comm] =?koi8-r?b?6dPQz8zY2s/Xwc7JxSBuZ2lueCDLwcsgy9zbydLVwN3F?= =?koi8-r?b?x88g0NLPy9PJIMTM0SBBUFQ=?= X-BeenThere: community@lists.altlinux.org X-Mailman-Version: 2.1.10b3 Precedence: list Reply-To: ALT Linux Community general discussions List-Id: ALT Linux Community general discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2008 23:15:01 -0000 Archived-At: List-Archive: List-Post: Почему то у меня в кэше nginx ничего кроме файлов release и release.classic не сохранятся. Вроде все делал как написано. Вот мой nginx.conf: worker_processes 10; error_log /var/log/nginx/error.log; events { worker_connections 1024; } http { proxy_temp_path /var/spool/nginx/tmp/proxy; fastcgi_temp_path /var/spool/nginx/tmp/fastcgi; client_body_temp_path /var/spool/nginx/tmp/client; include /etc/nginx/mime.types; default_type application/octet-stream; sendfile on; gzip on; # text/html don't need to be defined there, it always compressed gzip_types text/plain text/css text/xml application/x-javascript application/atom+xml; # gzip_comp_level 9; server { listen localhost:80; server_name my_server; location /altlinux/ { root /var/www/; error_page 404 = /fetch$uri; } location /fetch/altlinux/alt/ { internal; proxy_pass http://ftp.altlinux.org/; proxy_store /var/www/$request_uri; } # charset on; # source_charset koi8-r; access_log /var/log/nginx/access.log; } }