home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 12 / Silicon_Graphics_Developer_Magic_Soft_Dev_812-8101-012.iso / .all / bin / srm_conf.awk < prev    next >
Encoding:
Text File  |  1995-11-15  |  2.2 KB  |  53 lines

  1. #############################################################################
  2. #                                        #
  3. #    Ok here's my silly little awk script for the WebForce release.        #
  4. #    Works real simple.  After you have determined a free port on the    #
  5. #    machine, and your root directory for the CD, run the following        #
  6. #    shell command and the server should fire up all pretty like:        #
  7. #                                        #
  8. #    $ROOTDIRECTORY/bin/nawk -f $ROOTDIRECTORY/bin/serverawk.awk \         #
  9. #        $ROOTDIRECTORY/bin/httpd_ncsa/conf/httpd.tmpl > \        #
  10. #        $TMPDIRECTORY/httpd_ncsa.conf                    #
  11. #                                        #
  12. #    $ROOTDIRECTORY/bin/nawk -f $ROOTDIRECTORY/bin/serverawk.awk         #
  13. #        $ROOTDIRECTORY/bin/httpd_spry/config/httpd.tmpl > \        #
  14. #        $TMPDIRIECTORY/httpd_spry.conf                    #
  15. #                                        #
  16. #    Will handle the variables in the config file, with             #
  17. #        $ROOTDIRECTORY = the directory that the CD is mounted and   #
  18. #            the subdir `.all`                    #
  19. #        $TMPDIRECTORY = whatever temporary directory that stuff gets#
  20. #            dumped to.  If no variable change all occurances to #
  21. #            /usr/tmp.                        #
  22. #        $PORT = whatever port > 1020 is free for your web service.  #
  23. #                                        #
  24. #    After you awk through the config files, you then launch the server  #
  25. #    with the following command:                        #
  26. #                                        #
  27. #    ln -s $ROOTDIRECTORY/ /usr/tmp/dm/DevMagicWeb                #
  28. #    $ROOTDIRECTORY/bin/httpd_ncsa/httpd -f $TMPDIRECTORY/httpd_ncsa.conf#
  29. #                                        #
  30. #    $ROOTDIRECTORY/bin/httpd_spry/bin/httpd -p $SPRYPORT \            #
  31. #        -r $TMPDIR/httpd_spry.conf                    #
  32. #                                        #
  33. #    Then launch netscape with:                        #
  34. #                                        #
  35. #    $ROOTDIRECTORY/bin/netscape -xrm "Whatever X resources you would    #
  36. #        like to change, such as the one that screams at you when    #
  37. #        you launch a csh script." http://localhost:$PORT/        #
  38. #                                        #
  39. #    *****************************************                #
  40. #    *        NOTE!            *                #
  41. #    *  The variables and binary paths are    *                #
  42. #    * suggestions only.  rename at will    *                #
  43. #    *****************************************                #
  44. #                                        #
  45. #                                        #
  46. #############################################################################
  47.  
  48. {
  49. gsub(/\$DOCUMENTROOT/, ENVIRON["DOCUMENTROOT"])
  50. print $0
  51. }
  52.  
  53.