<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.josephluis.com/index.php?action=history&amp;feed=atom&amp;title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts</id>
		<title>Creating A Local Domain Using Apache Virtual Hosts - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.josephluis.com/index.php?action=history&amp;feed=atom&amp;title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts"/>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts&amp;action=history"/>
		<updated>2026-09-08T22:24:27Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts&amp;diff=354&amp;oldid=prev</id>
		<title>Josephluis: Created page with &quot;Taken from [http://www.survivethedeepend.com/zendframeworkbook/en/1.0/creating.a.local.domain.using.apache.virtual.hosts here]  &#039;&#039;The basic Virtual Host configuration we&#039;re se...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts&amp;diff=354&amp;oldid=prev"/>
				<updated>2014-07-16T21:00:58Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Taken from [http://www.survivethedeepend.com/zendframeworkbook/en/1.0/creating.a.local.domain.using.apache.virtual.hosts here]  &amp;#039;&amp;#039;The basic Virtual Host configuration we&amp;#039;re se...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Taken from [http://www.survivethedeepend.com/zendframeworkbook/en/1.0/creating.a.local.domain.using.apache.virtual.hosts here]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;The basic Virtual Host configuration we&amp;#039;re seeking is as follows:&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Setup Listening Port&lt;br /&gt;
NameVirtualHost *:80&lt;br /&gt;
&lt;br /&gt;
# Ensure &amp;quot;localhost&amp;quot; is preserved unchanged pointed&lt;br /&gt;
# to the default document root for our system.&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
    ServerName localhost&lt;br /&gt;
    DocumentRoot /var/www&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Setup &amp;quot;helloworld.tld&amp;quot; Virtual Host&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
    ServerName helloworld.tld&lt;br /&gt;
    DocumentRoot /home/padraic/www/helloworld/public&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;Directory /home/padraic/www/helloworld/public&amp;gt;&lt;br /&gt;
        Options Indexes FollowSymLinks Includes&lt;br /&gt;
        AllowOverride All&lt;br /&gt;
        Order allow,deny&lt;br /&gt;
        Allow from all&lt;br /&gt;
    &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and add to /etc/hosts (for this example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
127.0.0.1 helloworld.tld&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	</feed>