home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / conf / gsp.properties < prev    next >
Encoding:
Text File  |  1999-08-26  |  4.7 KB  |  139 lines

  1. #
  2. # gsp.properties - referenced by localhost.properties
  3.  
  4. ##########################
  5. # all class mapping info #
  6. ##########################
  7. #class.logger=<insert custom logger classname here>
  8.  
  9. # space separated list of Application classes to load at startup
  10. #class.applications=
  11.  
  12.  
  13. ################
  14. # logger setup #
  15. ################
  16.  
  17. # where to log exceptions to.  As of GSP 0.83 this log is transient, and is
  18. # cleared out each time the server is restarted.  Permanent log messages go
  19. # in the servlet runtime's log now
  20. logger.filename=/OS2Httpd/logs/gsp.log
  21.  
  22. # Email notification
  23. #
  24. # GSP will notify you via email of any exceptions that occur if you uncomment
  25. # these properties
  26.  
  27. # number of minutes to wait before sending mail (must be > 0 to work)
  28. # this is to avoid getting flooded with mail if your database (or some other
  29. # critical link in your application) were to go down.  Whatever you set this
  30. # to will be the interval between messages.  For example, if you set this to
  31. # 60, you'll get at most one message per hour (and only then if an exception
  32. # was thrown that hour)
  33. #logger.mail.frequency=60
  34.  
  35. # who to send mail to.  this should be a space separated list of addresses
  36. #logger.mail.to=
  37.  
  38. # who to send mail from.  this must be a single email address (no spaces)
  39. #logger.mail.from=
  40.  
  41. # subject line to appear in mail
  42. #logger.mail.subject=GSP Exception Caught
  43.  
  44. ################
  45. # parser setup #
  46. ################
  47.  
  48. # where GSP should write .java and .class files
  49. # MUST be writable by the user JServ runs as
  50. parser.classdir=/OS2Httpd/servlets
  51.  
  52. # path to the Java compiler.  if you use a compiler other than javac,
  53. # uncomment the appropriate directives below, comment out the directives
  54. # relating to javac,, and set the parser.javac directive to an appropriate
  55. # path for your system.
  56.  
  57. #   javac
  58. parser.javac=h:/java11/bin/javac
  59. #parser.errorparser=com.bitmechanic.gsp.JavacErrorParser
  60.  
  61. #   guavac
  62. #parser.javac=/usr/local/bin/guavac
  63. #parser.errorparser=com.bitmechanic.gsp.GuavacErrorParser
  64.  
  65. #   jikes
  66. #parser.javac=/Apps/jikes/jikes
  67. parser.errorparser=com.bitmechanic.gsp.JavacErrorParser
  68. parser.parse_stdout=true
  69.  
  70. # this gets added to the system CLASSPATH when compiling pages
  71. # set this to the same value as the repository parameter for this host
  72. # in jserv.properties. if you set it to contain more than the repository
  73. # for this host, then your pages may compile but fail to run.
  74. parser.extraclasspath=h:/java11/lib/classes.zip;/os2httpd/jserv/servclasses.zip;/OS2Httpd/servlets;/os2httpd/jserv
  75.  
  76. # uncomment this if you want to use a ServletOutputStream instead of
  77. # a PrintWriter inside the template.  Don't do this unless you have a very
  78. # good reason, as it will break response.sendRedirect()
  79. #parser.servletoutputstream=true
  80.  
  81. # uncomment this to enable URL rewriting (embedding session ID in anchor
  82. # tags).  Value of this property should be a space separated list of
  83. # hostnames that GSP should rewrite.
  84. # For example, if you run "foo.com", set this to:
  85. #     parser.rewriteurl.hosts=www.foo.com my.foo.com blah.foo.com
  86. #parser.rewriteurl.hosts=
  87.  
  88. # don't touch these yet..  for future release
  89. parser.classreloader=com.bitmechanic.gsp.GspClassLoader
  90.  
  91. ################
  92. # mailer setup #
  93. ################
  94.  
  95. # specifies which host to drop off mail messages at.  defaults to localhost
  96. #mailer.smtphost=localhost
  97.  
  98. ######################
  99. # session management #
  100. ######################
  101.  
  102. # number of minutes between requests a session may go before being
  103. # removed from memory (default is 30)
  104. session.timeout.minutes=30
  105.  
  106. # number of minutes between checks to see if sessions have timed out
  107. session.sleepinterval.minutes=1
  108.  
  109. # set this to prevent sessions from being created unless a template needs one.
  110. # side effect of setting this is that Application.sessionStart() is not 
  111. # called until the session is in use (so you won't get a totally accurate
  112. # sense of when the user's session started).  Benefit of setting this is that
  113. # you potentially save a lot of RAM
  114. #session.create_upon_request=true
  115.  
  116. ###############
  117. # file upload #
  118. ###############
  119.  
  120. # directory to temporarily save uploaded files
  121. #upload.dir=/tmp
  122.  
  123. # uncomment this if you do not want temp files to be removed at the end of
  124. # a GSP request
  125. #upload.keeptempfile=true
  126.  
  127. # maximum number of bytes an uploaded file may be
  128. # files that exceed this size are truncated
  129. # this is set to 1000000 by default
  130. #upload.maxfilesize=1000000
  131.  
  132. ############################################################################
  133. #
  134. # user defined properties
  135. # place any other config options you wish here
  136. #
  137. ############################################################################
  138.