On Mon, 13 Feb 2012 19:53:04 +0100, Johannes Krampf <[email protected]> wrote: > On 02/13/2012 07:41 PM, Nicolás Reynolds wrote: > > On Mon, 13 Feb 2012 19:16:06 +0100, Johannes > > Krampf<[email protected]> wrote: > >> Hello everyone, > > cool! is it an actual mirror of parabola or do you add packages? > > > > i was thinking a dynamic mirror can be done by just syncing the > > databases and using nginx's proxy_store to dinamically download and > > store packages :) > It is an actual mirror. I store ~27GB of packages for the libre, > libre-testing, core, extra, community, testing and multilib repositories > for our 3 arches. I do not add packages and check the md5 when downloading. > > (I downloaded most packages from an Arch mirror using RSync, I started > only a few days ago on the script.)
ok, we can add it to pacman-mirrorlist-libre then :D
>
> The idea of an dynamic mirror sounds interesting, particularly if you
> could specify multiple source servers.
>
yes, writing from memory:
upstream repo {
server repo.parabolagnulinux.org;
server parabolaweb.eu;
}
server {
server_name parabola.mirror.eu;
root /srv/http/parabola.mirror.eu;
location ~ *.pkg.tar.?z$ {
proxy_store /srv/http/parabola.mirror.eu$request_uri;
proxy_store_access user:rw group:r all:r;
proxy_pass http://repos;
}
}
pgpgG37DB1wxE.pgp
Description: PGP signature
_______________________________________________ Dev mailing list [email protected] http://lists.parabolagnulinux.org/mailman/listinfo/dev
