bscho,
It's just a few steps:
1. make a symbolic link from /usr/local/apache/bin/apachectl to /etc/rc.d/init./httpd
2. make a symbolic link from /etc/rc.d/init.d/httpd to /etc/rc.d/rc3.d/S30httpd
3. make a symbolic link from /etc/rc.d/init.d/httpd to /etc/rc.d/rc5.d/S30httpd
4. make a symbolic link from /etc/rc.d/init.d/httpd to /etc/rc.d/rc3.d/K04httpd
5. make a symbolic link from /etc/rc.d/init.d/httpd to /etc/rc.d/rc5.d/K04httpd
If you need it, the command is
Code:
ln -s /usr/local/apache/bin/apachectl /etc/rc.d/init./httpd
The first line creates a link to apachectl, the next two start it on boot, the next two ensure it shuts down properly.
**This is assuming you have compiled Apache from source
HTH