sluugls.gif (4572 bytes)

Apache HTTP
spacer.GIF (49 bytes)
MySQL

spacer.GIF (49 bytes)
PHP
spacer.GIF (49 bytes)
Java JDK
spacer.GIF (49 bytes)
Java Servlets
spacer.GIF (49 bytes)
Apache JServ
spacer.GIF (49 bytes)
ht://Dig

sluugls_text.GIF (7934 bytes)

Apache HTTP

URL
http://www.apache.org

Sample Compile and Installation

# tar xzvf apache_1.3.6.tar.gz 
# cd apache_1.3.6
# more INSTALL 
# ./configure --prefix=/opt/web --enable-module=speling --enable-module=unique_id
# make
# make install

From the output of make install...
+--------------------------------------------------------+
| You now have successfully built and installed the      |
| Apache 1.3 HTTP server. To verify that Apache actually |
| works correctly you now should first check the         |
| (initially created or preserved) configuration files   |
|                                                        |
|   /opt/web/conf/httpd.conf
|                                                        |
| and then you should be able to immediately fire up     |
| Apache the first time by running:                      |
|                                                        |
|   /opt/web/bin/apachectl start
|                                                        |
| Thanks for using Apache.       The Apache Group        |
|                                http://www.apache.org/  |
+--------------------------------------------------------+


# cd ../../web/conf/
# vi httpd.conf
# diff httpd.conf httpd.conf.default
268c268
< ServerName crosscheck.feldt.com
---
> #ServerName crosscheck.feldt.com
358c358
< AccessFileName .htHiddenName
---
> AccessFileName .htaccess
368c368
< 
---
> 
465c465
< #CustomLog /opt/web/logs/access_log common
---
> CustomLog /opt/web/logs/access_log common
478c478
< CustomLog /opt/web/logs/access_log combined
---
> #CustomLog /opt/web/logs/access_log combined
# /opt/web/bin/apachectl start