From: Patrick Okui Date: 2009-08-13T01:16:45+09:00 Subject: Re: multiple projects - Apache On Aug 12, 2009, at 4:04 PM, James Herdman wrote: > I have had *zero* luck using multiple VHOST files. This may be due > to my own > lack of knowledge in using Apache though. There's a free preference pane for OS X that's floating around somewhere that essentially does this: NameVirtualHost *:80 ServerName _default_ Include /path/to/passenger_vhosts/*.conf The is optional - just protects against idiots like me - and then a sample foo.conf would look like ... ServerName foo.local DocumentRoot "/u/rail_sites/foo/public" RailsEnv development Order allow,deny Allow from all Adding a vhost just needs an apache reload. -- patrick