intranet web site

hello

I would like to create an internal web site, but how do i make it with Aix ?
I must to install apache and send my http pages in the declared repertory ?
There are some configuration files to modify ??

thank you

install appache download from
http://www.bullopensource.org/download/aix52/apache-1.3.31.0.bff
create the required user ( freeware group frec )
smitty install

CHANGE
vi /usr/local/config/httpd.conf
Configure the httpd.conf
The normal location this will install to is /usr/local
To change this mount point a new filesystem of your choice can be mounted over the top off /usr/local and the remounted some where else.
� mkdir /usr/local/apache/conf
� cp /usr/local/conf/httpd.conf /usr/local/apache/conf/httpd.conf
� edit the httpd.conf file and change the following
o ServerAdmin your@email.address
o DocumentRoot �/YOUR http�
o <Directory �/YOUR http� >

Start
/usr/local/bin/apachectl start
Stop
/usr/local/bin/apachectl stop

HIS IS THE VERY BASIC SETUP TO GET YOU STARTED

thank you very much !