Advertisement
Sk8erPeter

isapi_redirect.properties

Nov 24th, 2011
992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Configuration file for the Jakarta ISAPI Redirector
  2.  
  3. # The path to the ISAPI Redirector Extension, relative to the website
  4. # This must be in a virtual directory with execute privileges
  5. extension_uri=/jakarta/isapi_redirect.dll
  6.  
  7. # Full path to the log file for the ISAPI Redirector
  8. log_file=c:\tomcat\logs\isapi_redirect.log
  9.  
  10. # Log level (debug, info, warn, error or trace)
  11. log_level=info
  12.  
  13. # The time between log file rotations in seconds. Setting this to 0 (the default)
  14. # disables log rotation based on time.
  15. log_rotationtime=0
  16.  
  17. # The maximum log file size in megabytes, after which the log file will be
  18. # rotated. Setting this to 0 (the default) disables log rotation based on file
  19. # size. The value can have an optional M suffix, i.e. both 5 and 5M will rotate
  20. # the log file when it grows to 5MB. If log_rotationtime is specified, then this
  21. # setting is ignored.
  22. log_filesize=0
  23.  
  24. # Full path to the workers.properties file
  25. worker_file=c:\tomcat\conf\workers.properties
  26.  
  27. # Full path to the uriworkermap.properties file
  28. worker_mount_file=c:\tomcat\conf\uriworkermap.properties
  29.  
  30. # Full path to the rewrite.properties file
  31. rewrite_rule_file=c:\tomcat\conf\rewrites.properties
  32.  
  33. # Specify the time in seconds upon which the worker_mount_file will be reloaded.
  34. worker_mount_reload=
  35.  
  36. # If it is set to true, URL session suffixes of the form ";jsessionid=..." get
  37. # stripped of URLs, even if the are served locally by the web server. A true
  38. # value can be represented by the string "1" or any string starting with the
  39. # letters "T" or "t". A false value will be assumed for "0" or any string
  40. # starting with "F" or "f". The default value is false.
  41. strip_session=0
  42.  
  43. # Avalue representing "0" or "1". This is needed because of minor
  44. # incompatibilities with IIS 5.1.
  45. # By default its value is 1, which means we use the SF_NOTIFY_AUTH_COMPLETE
  46. # event. If you set this to 0, then we use SF_NOTIFY_PREPROC_HEADERS. This might
  47. # be needed for IIS 5.1 when handling requests using the PUT HTTP method.
  48. auth_complete=1
  49.  
  50. # A string value which influences, how URIs are decoded and re-encoded between
  51. # IIS and Tomcat. You should leave this at it's default value, unless you have
  52. # a very good reason to change it.
  53. #
  54. # If the value is "parsed", the forwarded URI will be decoded and explicit path
  55. # components like ".." will already be resolved. This is less spec compliant and
  56. # is not safe if you are using prefix forwarding rules.
  57. #
  58. # If the value is "unparsed", the forwarded URI will be the original request URI.
  59. # It's spec compliant and also the safest option. Rewriting the URI and then
  60. # forwarding the rewritten URI will not work.
  61. #
  62. # If the value is "escaped", the forwarded URI will be the re-encoded form of
  63. # the URI used by "parsed". Explicit path components like ".." will already be
  64. # resolved. This will not work in combination with URL encoded session IDs.
  65. #
  66. # If the value is "proxy", the forwarded URI will be a partially re-encoded form
  67. # of the URI used by "parsed". Explicit path components like ".." will already
  68. # be resolved. and problematic are re-encoded.
  69. #
  70. # The default value is "proxy".
  71. uri_select=
  72.  
  73. # A string value representing a boolean. If it is set to true, URLs containing
  74. # percent signs '%' or backslashes '\' after decoding will be rejected.
  75. # Most web apps do not use such URLs. By enabling "reject_unsafe" you can block
  76. # several well known URL encoding attacks.
  77. # A true value can be represented by the string "1" or any string starting with
  78. # the letters "T" or "t". A false value will be assumed for "0" or any string
  79. # starting with "F" or "f". The default value is false.
  80. reject_unsafe=0
  81.  
  82. # A value representing the watchdog thread interval in seconds. The workers are
  83. # maintained periodically by a background thread running periodically every
  84. # watchdog_interval seconds. Worker maintenance checks for idle connections,
  85. # corrects load status and is able to detect backend health status.
  86. #
  87. # The maintenance only happens, if since the last maintenance at least
  88. # worker.maintain seconds have passed. So setting the watchdog_interval much
  89. # smaller than worker.maintain is not useful.
  90. #
  91. # The default value is 0 seconds, meaning the watchdog thread will not be
  92. # created, and the maintenance is done in combination with normal requests
  93. # instead.
  94. watchdog_interval=0
  95.  
  96. # A string value representing the error page url redirection when backend
  97. # returns non-200 response. This directive can be used to customise the error
  98. # messages returned from backend server.
  99. # The url must point to a valid server url and can contain format string number
  100. # (%d) that can be used to separate the pages by error number. The redirect url
  101. # in that case is formatted by replacing %d from error_page to returned error
  102. # number.
  103. error_page=
  104.  
  105. # A string value representing a boolean. If it is set to true, chunked encoding
  106. # is supported by the server.
  107. # A true value can be represented by the string "1" or any string starting with
  108. # the letters "T" or "t". A false value will be assumed for "0" or any string
  109. # starting with "F" or "f". The default value is false.
  110. enable_chunked_encoding=0
  111.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement