
REDHAT PACKAGE INSTALL
======================

To create a binary RPM package, type
	# rpmbuild -ta esehttpd-xxxx.tar.gz
By default, the binary RPM package is created in /usr/src/redhat/RPMS/yyy/
where yyy is the architecture of your machine (possibly i386). To install,
	# rpm -U /usr/src/redhat/RPMS/yyy/esehttpd-xxxx.yyy.rpm
You need to create a user (e.g., httpd) who is the owner of the web
contents. And then edit /etc/esehttpd/esehttpd.conf for various settings.
	# /etc/rc.d/init.d/esehttpd start
will start the esehttpd server, and
	# /etc/rc.d/init.d/esehttpd stop
will stop it.


MANUAL INSTALL
==============

To build, do
	$ ./configure
	$ make
	$ su
	# make install

To start/stop the esehttpd server, type
	# /usr/local/esehttpd/bin/esectl start
	# /usr/local/esehttpd/bin/esectl stop
.

