Need to provide security for these:

	HTDOCS_DIR -- PTS HTML docs (/usr/local/etc/httpd/htdocs...)

	CGIBIN_DIR -- PTS CGI progs (/usr/local/etc/httpd/cgi-bin)

	WAISDIR -- PTS WAIS database (/usr/local/etc/httpd/htdocs/wais/PTS...)

Need docs for these:

	NCSA HTTPD

	CERN HTTPD

	Netscape's Web server

	WAIS server

	???

	/tmp/debug

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

1.0  NCSA's HTTPD server

1.1  Without modifying config files:

	In your htdocs directory (something like /usr/local/etc/httpd/htdocs)
	create the links "pts" and "pts-bin" that point to the
	corresponding PTS directories.  This should be something like
	this:

	# ln -s /usr/local/pts/htdocs pts
	# ln -s /usr/local/pts/cgi-bin pts-bin


1.2  Alternate (and probably preferred) method using config file aliases:

	In srm.conf, add something like this:

	Alias        /pts/      /usr/local/pts/htdocs/
	ScriptAlias  /pts-bin/  /usr/local/pts/cgi-bin/


1.3  Docs. for this server can be found at:

 	http://hoohoo.ncsa.uiuc.edu/


	
2.0  CERN HTTPD server

2.1  Config file setup:

	httpd.conf:
	==========
	Pass /ptsdocs/*	/usr/local/pts/htdocs/*
	Exec /ptsbin/*	/usr/local/pts/cgi-bin/*

	Protection  PTS-PROT {
        GetMask       Anybody@REPLACE.WITH.LOCAL.DOMAIN
	}

	Protect /ptsdocs PTS-PROT support.sysop
	Protect /ptsbin  PTS-PROT support.sysop


2.2  Docs. for this server can be found at:

	http://info.cern.ch/hypertext/DataSources/WWW/was.html


