 Add the following to the admd.conf file (update any paths that are
	incorrect):

1. 
# handle .cgi extensions
AddHandler cgi-script .cgi

2.
# settings for webmin
SetEnv WEBMIN_CONFIG /opt/casp/admin/conf/etcwebmin
SetEnv WEBMIN_VAR /opt/casp/admin/logs
SetEnv MINISERV_C0NFIG /opt/casp/admin/conf/miniserv.conf
SetEnv ASP_APACHE_DIR /opt/casp/asp-apache-3000
SetEnv CUR_HOST_NAME core4

3. 
# allow index.cgi as a default page
DirectoryIndex ... index.cgi

4.
# Alias images directory
Alias /images "/opt/casp/admin/images"

------------------------------------------------------

To start configuring the apache , we have to call
/apache/  virtual directory
e.g. http://linux-01:5100/apache/

This will invoke the home script index.cgi


------------------------------------------------------
To start and stop from browser, we need to change
the following subroutine in os.pm file /opt/casp/INSTALL directory
Original Subroutine
sub detect_os {
  return(`uname -s`);
}

Changed routine :
sub detect_os {
  return(`/bin/uname -s`);
}

----------------------------------------------------

Currently if the permissions of reading and writing to
directories where apache is installed is not given to
a general user then we can only be able to see the
configuaration and we will not be able to change the
configuration.

If in file ~casp/admin/etcwebmin/config
writing permissions is not there then only first page(/apache)
will work properly.

