> IIS in Windows XP or Apache Web Server?
>
> I want to set up a web server, but which is the best one, and why?
Have a look at
http://www.serverwatch.com/tutorials...le.php/3074841
(Google is your friend)
It depends what you want to use the websites for. If you just want a basic
website, HTML, PHP, graphics etc then go for Apache; it has a very small
footprint and is easy to set up with the various GUIs that are around today
(again, Google)
>
> I want to run three separate web sites from the same computer. I
> have been told IIS is easiest to set up, but would I be better using
> Apache? I want reliability the most... Can Apache run multiple
> websites and how easy is it to set this up?
Relialability; go for Apache. It doesn't hold the same danger of security
holes that IIS does. Multiple websites are known as Virtual Hosts and it's
as easy as adding the following to the bottom of your httpd.conf file for
each virtual host (and then restart).
<VirtualHost *:80>
ServerName
www.domain.tld
ServerAlias domain.tld *.domain.tld
DocumentRoot C:\WWW\domain
</VirtualHost>