Hi,
Not off hand, except for
http://apache.org/docs/
Basically you want at a minimum:
<VirtualHost 123.123.123.123>
ServerName yourdomain.com
DocumentRoot /path/to/www
CustomLog /path/to/access_log combined
ErrorLog /path/to/error_log
<Directory /path/to/www>
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
If you need cgi-bin, then you'll also want:
ScriptAlias /cgi-bin/ /path/to/www/cgi-bin/
Cheers,
Alex
--
Gossamer Threads Inc.
Not off hand, except for
http://apache.org/docs/
Basically you want at a minimum:
<VirtualHost 123.123.123.123>
ServerName yourdomain.com
DocumentRoot /path/to/www
CustomLog /path/to/access_log combined
ErrorLog /path/to/error_log
<Directory /path/to/www>
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
If you need cgi-bin, then you'll also want:
ScriptAlias /cgi-bin/ /path/to/www/cgi-bin/
Cheers,
Alex
--
Gossamer Threads Inc.