Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 35518 invoked by uid 500); 27 Jan 2003 20:48:42 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 35505 invoked from network); 27 Jan 2003 20:48:41 -0000 Reply-To: From: "Mladen Turk" To: Cc: Subject: mod_vfsindex -- need some review Date: Mon, 27 Jan 2003 21:46:28 +0100 Organization: Mappingsoft Message-ID: <003101c2c645$3b33f8a0$5c00000a@GISDATA.ZG> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4024 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hi, This is the virtual file system module, meaning that you can serve context from non-file systems. Currently it only supports zip files, but has already added support for gzip and bzip archives. It is based on mod_autoindex, with couple of extra lines to mount filesystem and deliver context. It can browse or serve context directly from zip files, or any other virtual file system, with correct driver. I'm planning to add the support for .iso CD images .rpm, .tar and .cpio archives. Simple configuration: #Comment out the autoindex module #LoadModule autoindex_module modules/mod_autoindex.so LoadModule vfsindex_module modules/mod_vfsindex.so SetHandler vfs-handler Options Indexes FollowSymLinks IndexOptions FancyIndexing VersionSort VFSMount zip /wherever/whatever.zip now browse to http://localhost/zip24/ The sources are at http://www.apache.org/~mturk/ MT.