If you have apache 2 installed this advice won't help much (sorry)
1. you need to find your apache config file. I'm a debain user so mine lives at /etc/apache/httpd.conf open that file with your text editor and search for a line called DocumentRoot - that'll be your default directory. In there, change the index.html file to what you want as your default (home) page.
2. Look through the config for the BindAddress. Change 127.0.0.1 (or localhost) to *
3. Browsing? Or Serving? I'm assuming the latter. It will be because apache is set to start when your machine boots. To change this from the commandline (I'm sure redhat has a nice GUI for this, google may help on this):
- become root by typing 'su' and giving your root password
- Find your runlevel (by typing runlevel at the shell prompt). It's most likely to be 5, from what I remember of redhat.
- There should be a directory called /etc/rc5.d (where your runlevel is 5, subsititute it for 4 if that's your runlevel).
- cd into that directory (cd /etc/rc5.d ) and find the symlink that starts apache (apache may be called apache or httpd, you can find them by using 'ls -l | grep httpd' or 'ls -l | grep apache').
- Stop apache by typing '/etc/rc5.d/Sxxhttpd stop' (where xx is one or two digits).
- Move the symlink to your home directory by typing 'mv Sxxhttpd ~' (where xx is one or two digits).
This will disable apache you can re-enable it by moving that file back into the /etc/rc5.d directory and typing /etc/rc5.d/Sxxhttpd
HTH
Charlie
--
Charlie Harvey's website - linux, perl, java, anarchism and punk rock:
http://charlieharvey.org.uk