From owner-freebsd-questions Fri Apr 27 8:52: 2 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bcfw1d.bridge.com (bcfw1d.ext.bridge.com [167.76.159.31]) by hub.freebsd.org (Postfix) with ESMTP id E459237B423 for ; Fri, 27 Apr 2001 08:51:58 -0700 (PDT) (envelope-from tayers@bridge.com) Received: (from uucp@localhost) by bcfw1d.bridge.com (8.10.2/8.10.2) id f3RFqxU18401; Fri, 27 Apr 2001 10:52:59 -0500 (CDT) Received: from (unknown [167.76.56.34]) by bcfw1d via smap (V2.1) id xma018341; Fri, 27 Apr 01 10:52:41 -0500 Received: from mnmailhost (mnmailhost.bridge.com [167.76.155.14]) by mail1srv.bridge.com (8.8.8/8.7.3) with SMTP id KAA13061; Fri, 27 Apr 2001 10:51:32 -0500 (CDT) Received: from 89-7 by mnmailhost (SMI-8.6/SMI-4.1) id LAA25000; Fri, 27 Apr 2001 11:51:23 -0400 To: freebsd-questions@freebsd.org Subject: Re: How to run multiple Apache processes? References: From: Tim Ayers Date: 27 Apr 2001 10:51:21 -0500 In-Reply-To: Jim Freeze's message of "Fri, 27 Apr 2001 09:05:02 -0400 (EDT)" Message-ID: Lines: 26 User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "J" == Jim Freeze writes: J> Is there a way to have multiple processes of apache J> running, one for each user, or an alternate way J> to acheive the same thing as I described above. We do this all the time so that different developers don't clobber each other. You need to have each Apache set-up running on (listening to) a different port. You should probably also give everyone their own ServerRoot and DocumentRoot to prevent collisions. So all the config files could pretty much be the same except for Port 80xx # give each user a unique port ServerRoot /usr/local/www/ DocumentRoot /usr/local/www//htdocs Then to access their website they need to go to http://www.freeze.org:80xx/ Each user will also need a version of 'apachectl' or similar so they can control their own server. HTH and Hope you have a very nice day, :-) Tim Ayers (tayers@bridge.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message