ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Использование nginx как кэширующего прокси для APT
@ 2008-05-06 13:34 Ильфат
  2008-05-06 13:44 ` Timur Batyrshin
  0 siblings, 1 reply; 5+ messages in thread
From: Ильфат @ 2008-05-06 13:34 UTC (permalink / raw)
  To: ALT Linux Community general discussions

Здравствуйте!
rpm http://**NGINX HOST**/altlinux/alt/pub/Linux/ALT/4.0/branch/ i586 
classic
при источнике такого вида apt-get update ругается:
E: Malformed line 5 in source list /etc/apt/sources.list (Absolute dist)
Пример источника из 
http://www.freesource.info/wiki/AltLinux/Apt/NginxAsCache&amp
Что может быть не так в этой строке?
Спасибо!


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] Использование nginx как кэширующего прокси для APT
  2008-05-06 13:34 [Comm] Использование nginx как кэширующего прокси для APT Ильфат
@ 2008-05-06 13:44 ` Timur Batyrshin
  2008-05-06 15:34   ` Ильфат
  0 siblings, 1 reply; 5+ messages in thread
From: Timur Batyrshin @ 2008-05-06 13:44 UTC (permalink / raw)
  To: community

On Tue, 06 May 2008 17:34:16 +0400
Ильфат wrote:

> Здравствуйте!
> rpm http://**NGINX HOST**/altlinux/alt/pub/Linux/ALT/4.0/branch/ i586 
> classic
> при источнике такого вида apt-get update ругается:
> E: Malformed line 5 in source list /etc/apt/sources.list (Absolute
> dist)

Само собой.

> Пример источника из 
> http://www.freesource.info/wiki/AltLinux/Apt/NginxAsCache&amp
> Что может быть не так в этой строке?

Даже и не знаю как сказать помягче то..
Советую прежде чем тупо копипастить хотя бы подумать _что_ копируете.
А то так недолго и на чью-нибудь злую шутку в виде 'rm -rf /' нарваться.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] Использование nginx как кэширующего прокси для APT
  2008-05-06 13:44 ` Timur Batyrshin
@ 2008-05-06 15:34   ` Ильфат
  2008-05-06 23:13     ` Ильфат
  0 siblings, 1 reply; 5+ messages in thread
From: Ильфат @ 2008-05-06 15:34 UTC (permalink / raw)
  To: ALT Linux Community general discussions

Timur Batyrshin пишет:
> Даже и не знаю как сказать помягче то..
> Советую прежде чем тупо копипастить хотя бы подумать _что_ копируете.
> А то так недолго и на чью-нибудь злую шутку в виде 'rm -rf /' нарваться.
Спасибо за критику ;), очень помогло, все работает :D


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] Использование nginx как кэширующего прокси для APT
  2008-05-06 15:34   ` Ильфат
@ 2008-05-06 23:13     ` Ильфат
  2008-05-07  0:35       ` Ильфат
  0 siblings, 1 reply; 5+ messages in thread
From: Ильфат @ 2008-05-06 23:13 UTC (permalink / raw)
  To: ALT Linux Community general discussions

Почему то у меня в кэше 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;
    }

}


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] Использование nginx как кэширующего прокси для APT
  2008-05-06 23:13     ` Ильфат
@ 2008-05-07  0:35       ` Ильфат
  0 siblings, 0 replies; 5+ messages in thread
From: Ильфат @ 2008-05-07  0:35 UTC (permalink / raw)
  To: ALT Linux Community general discussions

Ильфат пишет:
> Почему то у меня в кэше nginx ничего кроме файлов release и 
> release.classic не сохранятся.
> Вроде все делал как написано.
Все, отбой. Мое упущение. Что-то мне подсказывало, что дело в правах 
доступа, так и оказалось. Я переместил каталог /var/www в /home и создал 
в /var на нее ссылку, при перемещении права, естественно, поменялись. 
Так что все нормально, все работает.
Внимательности бы мне :)


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-05-07  0:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-06 13:34 [Comm] Использование nginx как кэширующего прокси для APT Ильфат
2008-05-06 13:44 ` Timur Batyrshin
2008-05-06 15:34   ` Ильфат
2008-05-06 23:13     ` Ильфат
2008-05-07  0:35       ` Ильфат

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git