From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RPDoW-00043D-Bm for garchives@archives.gentoo.org; Sat, 12 Nov 2011 13:40:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3886E054D; Sat, 12 Nov 2011 13:39:59 +0000 (UTC) Received: from mail-gx0-f181.google.com (mail-gx0-f181.google.com [209.85.161.181]) by pigeon.gentoo.org (Postfix) with ESMTP id C73D9E045E for ; Sat, 12 Nov 2011 13:39:06 +0000 (UTC) Received: by ggnv2 with SMTP id v2so6283136ggn.40 for ; Sat, 12 Nov 2011 05:39:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=kVhbt4Hka3xaCO1FovO8/E9FhFDspLbtA60S2iKwyYw=; b=UKgf5rO2lL0/bZjicaizl2wawcDa9V0EQ0ztAM8LFIqww94PkKw1v+ALezuIrGyjgz xbxMXiIkJKbd8W2qv2JlqYuIHs91sCqvLoMz8k3yj1iAmsvS80iW9fogTxkx7Hhd6mpQ iJdjDihMSF3FZIktGfg7zV6+04SBEkFDYXwbg= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Received: by 10.182.111.8 with SMTP id ie8mr3619625obb.50.1321105146119; Sat, 12 Nov 2011 05:39:06 -0800 (PST) Received: by 10.182.38.170 with HTTP; Sat, 12 Nov 2011 05:39:06 -0800 (PST) In-Reply-To: References: Date: Sat, 12 Nov 2011 15:39:06 +0200 Message-ID: Subject: Re: [gentoo-user] The LIGHTEST web server (just for serving files) ? From: Ciprian Dorin Craciun To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=UTF-8 X-Archives-Salt: 1436e58d-a3e9-4fb5-868d-6a94766ea49e X-Archives-Hash: 62457a711eaed02972e5fbf8ebc9d412 On Sat, Nov 12, 2011 at 10:24, Pandu Poluan wrote: > What is the *LIGHTEST* web server package you know for gentoo? > > I just want to serve the distfiles, so no CGI / PHP / > whathaveyouscripting support is needed. > > Preferably, with logging so I can see which packages I missed, but not > necessary. > > Rgds, We use for such purpose http://linux.bytesex.org/misc/webfs.html . It features both (reasonable) performance (threaded), security (chroot, SSL) and simplicity (can be statically linked, can be controlled solely from arguments). For example (or add -d for debugging): ~~~~ webfsd -F -p 80 -r . ~~~~ Ciprian.