|
Home > Archive > Apache Server configuration support > January 2005 > virtual name domains
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
virtual name domains
|
|
| sandman 2005-01-30, 2:47 am |
| what should a good virtual name config like?
how about ftp config for the virtual domains?
is it worth setting up a dns server or just use zoneedit or the likes?
| |
| Davide Bianchi 2005-01-30, 2:47 am |
| On 2005-01-30, sandman <sandman@nospam.mrsandman.net> wrote:
> what should a good virtual name config like?
Like the default/example one but with real names.
Davide
--
Carpe Daemon -- Seize the background process!
-- From a Slashdot.org post
| |
| sandman 2005-01-30, 7:50 am |
| Davide Bianchi wrote:
> On 2005-01-30, sandman <sandman@nospam.mrsandman.net> wrote:
>
>
>
> Like the default/example one but with real names.
> Davide
>
ok, how about an example of a config that would provide the best results
for the admin and the client. such as log files.
heres and example of my current, i am looking for suggestions to improve.
NameVirtualHost 192.168.0.100
<VirtualHost 192.168.0.100>
DocumentRoot "/home/foo/domains/foo.net"
ServerName foo.net
<Directory "/home/foo/domains/foo.net">
allow from all
Options +Indexes
</Directory>
</VirtualHost>
<VirtualHost 192.168.0.100>
DocumentRoot "/home/foo/domains/foo1.net"
ServerName foo1.net
<Directory "/home/foo/domains/foo1.net">
allow from all
Options +Indexes
</Directory>
</VirtualHost>
|
|
|
|
|