home *** CD-ROM | disk | FTP | other *** search
- #############################################################################
- # #
- # Ok here's my silly little awk script for the WebForce release. #
- # Works real simple. After you have determined a free port on the #
- # machine, and your root directory for the CD, run the following #
- # shell command and the server should fire up all pretty like: #
- # #
- # $ROOTDIRECTORY/bin/nawk -f $ROOTDIRECTORY/bin/serverawk.awk \ #
- # $ROOTDIRECTORY/bin/httpd_ncsa/conf/httpd.tmpl > \ #
- # $TMPDIRECTORY/httpd_ncsa.conf #
- # #
- # $ROOTDIRECTORY/bin/nawk -f $ROOTDIRECTORY/bin/serverawk.awk #
- # $ROOTDIRECTORY/bin/httpd_spry/config/httpd.tmpl > \ #
- # $TMPDIRIECTORY/httpd_spry.conf #
- # #
- # Will handle the variables in the config file, with #
- # $ROOTDIRECTORY = the directory that the CD is mounted and #
- # the subdir `.all` #
- # $TMPDIRECTORY = whatever temporary directory that stuff gets#
- # dumped to. If no variable change all occurances to #
- # /usr/tmp. #
- # $PORT = whatever port > 1020 is free for your web service. #
- # #
- # After you awk through the config files, you then launch the server #
- # with the following command: #
- # #
- # ln -s $ROOTDIRECTORY/ /usr/tmp/dm/DMTOOLSDIR #
- # $ROOTDIRECTORY/bin/httpd_ncsa/httpd -f $TMPDIRECTORY/httpd_ncsa.conf#
- # #
- # $ROOTDIRECTORY/bin/httpd_spry/bin/httpd -p $SPRYPORT \ #
- # -r $TMPDIR/httpd_spry.conf #
- # #
- # Then launch netscape with: #
- # #
- # $ROOTDIRECTORY/bin/netscape -xrm "Whatever X resources you would #
- # like to change, such as the one that screams at you when #
- # you launch a csh script." http://localhost:$PORT/ #
- # #
- # ***************************************** #
- # * NOTE! * #
- # * The variables and binary paths are * #
- # * suggestions only. rename at will * #
- # ***************************************** #
- # #
- # #
- #############################################################################
-
- {
- gsub(/\$DMTOOLSDIR/, ENVIRON["DMTOOLSDIR"])
- gsub(/\$TMPDIRECTORY/, ENVIRON["TMPDIRECTORY"])
- gsub(/\$SPRYPORT/, ENVIRON["SPRYPORT"])
- gsub(/\$NCSAPORT/, ENVIRON["NCSAPORT"])
- print $0
- }
-
-