<br><br><div class="gmail_quote">On Wed, Apr 6, 2011 at 9:40 AM, Jeff Hubbs <span dir="ltr">&lt;<a href="mailto:jhubbslist@att.net">jhubbslist@att.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Well, let me jump in and ask about what *I&#39;m* trying to do...<br>
<br>
I am becoming close to being equipped to host Web sites out of my house,<br>
expecting to have multiple sites per IP (which I expect to have a small<br>
number of - maybe 2 or 4) provided by some sort of business broadband<br>
(probably Comcast, as my other copper is taken up by AT&amp;T Uverse and<br>
POTS).  Given the current IPv4/IPv6 situation, how should that look?<br>
And I still need to come to understand the entire end-to-end chain from<br>
Internet DNS and domain name hosting all the way to Apache vhost config<br>
as to how <a href="http://aaa.com" target="_blank">aaa.com</a>, <a href="http://bbb.org" target="_blank">bbb.org</a>, <a href="http://ccc.com" target="_blank">ccc.com</a>, etc. as browsed from the Series of<br>
Tubes can come to live on a single server.<br>
<font color="#888888"><br>
- Jeff<br>
</font><div><div></div><br clear="all"></div></blockquote><div>ISP (Comcast Business Class is what I use now after dropping Speakeasy due to bad business merger/buyout) will provide an end point device (usually a small router). You will at least 1 static IP. <br>
<br>Your hosting machine will have that static IP as it&#39;s address.<br><br>Apache conf file will listen to that address (or *:80).<br><br>Virtual hosts in httpd.conf will look like:<br>NameVirtualHost *:80<br>&lt;VirtualHost *:80&gt;<br>
SuexecUserGroup &quot;#503&quot; &quot;#502&quot;<br>ServerName <a href="http://nationxskate.org">nationxskate.org</a><br>ServerAlias <a href="http://www.nationxskate.org">www.nationxskate.org</a><br>DocumentRoot /home/nationxskate/public_html<br>
ErrorLog /home/nationxskate/logs/error_log<br>CustomLog /home/nationxskate/logs/access_log combined<br>ScriptAlias /cgi-bin/ /home/nationxskate/cgi-bin/<br>&lt;Directory /home/nationxskate/public_html&gt;<br>Options Indexes IncludesNOEXEC FollowSymLinks<br>
allow from all<br>AllowOverride All<br>&lt;/Directory&gt;<br>&lt;Directory /home/nationxskate/cgi-bin&gt;<br>allow from all<br>&lt;/Directory&gt;<br>&lt;/VirtualHost&gt;<br></div></div><br><br>Then any web name of <a href="http://nationxscate.org">nationxscate.org</a> will be delivered from /home/nationxskate/public_html (son&#39;s skateboard site).<br>
<br>So domain name hosting points <a href="http://nationxskate.org">nationxskate.org</a> to my IP (A name record with C name pointing to same).<br><br>easy-peasy.<br>-- <br>-- <br>James P. Kinney III<br>I would rather stumble along in freedom than walk effortlessly in chains.<br>
<br><br>