Web Servers
$Id: webservers.html,v 1.21 1999/10/22 15:21:09 eberg Exp eberg $
Host counts, Net Stats
- Serverwatch
- Internet Domain Survey
- Web Server Comparison
Log Analysis Tools
- Analog
- Webalizer
- AWStats
- AccessWatch.
Please check out the
license agreement on this one. It's not just free.
- wwwstat
-
Article on free log analysis tools
from Netscapeworld
There are also mirror sites:
- Razorfish/NY
- New York
- San Francisco
The Apache FAQ.
-
Apache Tuning FAQ
-
URL Rewriting under Apache
- ApacheWeek,
news on the Apache server.
- Search the
Current Docs
-
Apache Module Registry
-
Running a Perfect Web Site with Apache,
Compliments of QUE publishing. The whole book online includes sections on HTML.
-
Apache logging module <filename: ApacheModules.tar.gz>
-
Apache and SSLeay Setup Instructions
- Mailing Lists
- Apache Announce mailing list
- News Groups
- comp.infosystems.www.servers.unix
Java Server Pages
- The Jakarta Project, the
goal of which is to provide commercial-quality server solutions based
on the Java Platform that are developed in an open and cooperative
fashion.
-
IBMs JSP Development Kit
ModPerl & Persistent Pools of DB Handles
this comes from Bowen Dwelle
(bowen@HOTWIRED.COM)
####
# httpd.conf
PerlScript foo.pm
PerlHandler foo::handler
####
####
package foo
use Sybase::DBLib;
# don't init $dbh here, since that would happen _before_ apache forks,
# and the child processes _will not_ be able
# to share the single resulting database handle cleanly
sub handler {
# init $dbh here, since this happens _after_ apache forks,
# and each child process gets it own persistent database handle
$dbh = Sybase::DbLib->new(...) unless defined $dbh;
... do stuff with $dbh ...
}
Netscape
(Commerce|Communications|Enterprise) Server
- NetscapeWorld
and
NetscapeWorld's DevCon Daily
- Lymehouse.
Useful NS Server information
-
NSAPI logging module for Netscape web servers
-
Sample NSAPI to create a referrer log on Unix
Authentication Issues
- Script for adding users
to the users database
-
Guidelines for your own User Authentication NSAPI function
- Stuff on NS NDBM Password Files
Docs at Netscape
W3C httpd (The old CERN server)
- Documentation
Microsoft Internet Info Server and SiteServer
-
Installation and Administration Guide for IIS 2.0
MS SiteServer
- SiteServer Web Site
HTTP Server Tricks
Two Servers, One Interface
Publications
- WebServer OnLine Magazine