rubyfox-server 2.13.6.2 → 2.16.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (616) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -1
  3. data/README.md +19 -0
  4. data/lib/rubyfox/server/cli.rb +39 -5
  5. data/lib/rubyfox/server/data/config/UploadsLock.txt +1 -1
  6. data/lib/rubyfox/server/data/config/admin/admintool.xml +1 -0
  7. data/lib/rubyfox/server/data/config/admin/descriptors/config_room.txt +97 -43
  8. data/lib/rubyfox/server/data/config/admin/descriptors/config_server.txt +307 -93
  9. data/lib/rubyfox/server/data/config/admin/descriptors/config_zone.txt +311 -95
  10. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_game.txt +5 -5
  11. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_mmo.txt +6 -6
  12. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_room.txt +69 -44
  13. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_user.txt +55 -43
  14. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_zone.txt +81 -36
  15. data/lib/rubyfox/server/data/config/admin/gmc/gmc.py +55 -18
  16. data/lib/rubyfox/server/data/config/admin/icons/Analytics.png +0 -0
  17. data/lib/rubyfox/server/data/config/admin/icons/Analytics.svg +1 -0
  18. data/lib/rubyfox/server/data/config/admin/icons/BanManager.png +0 -0
  19. data/lib/rubyfox/server/data/config/admin/icons/BanManager.svg +1 -0
  20. data/lib/rubyfox/server/data/config/admin/icons/BlueBoxMonitor.png +0 -0
  21. data/lib/rubyfox/server/data/config/admin/icons/BlueBoxMonitor.svg +1 -0
  22. data/lib/rubyfox/server/data/config/admin/icons/Console.png +0 -0
  23. data/lib/rubyfox/server/data/config/admin/icons/Console.svg +9 -0
  24. data/lib/rubyfox/server/data/config/admin/icons/Dashboard.png +0 -0
  25. data/lib/rubyfox/server/data/config/admin/icons/Dashboard.svg +1 -0
  26. data/lib/rubyfox/server/data/config/admin/icons/ExtensionManager.png +0 -0
  27. data/lib/rubyfox/server/data/config/admin/icons/ExtensionManager.svg +1 -0
  28. data/lib/rubyfox/server/data/config/admin/icons/LicenseManager.png +0 -0
  29. data/lib/rubyfox/server/data/config/admin/icons/LicenseManager.svg +1 -0
  30. data/lib/rubyfox/server/data/config/admin/icons/LogViewer.png +0 -0
  31. data/lib/rubyfox/server/data/config/admin/icons/LogViewer.svg +1 -0
  32. data/lib/rubyfox/server/data/config/admin/icons/ServerConfigurator.png +0 -0
  33. data/lib/rubyfox/server/data/config/admin/icons/ServerConfigurator.svg +1 -0
  34. data/lib/rubyfox/server/data/config/admin/icons/ServletManager.svg +1 -0
  35. data/lib/rubyfox/server/data/config/admin/icons/ZoneConfigurator.png +0 -0
  36. data/lib/rubyfox/server/data/config/admin/icons/ZoneConfigurator.svg +1 -0
  37. data/lib/rubyfox/server/data/config/admin/icons/ZoneMonitor.png +0 -0
  38. data/lib/rubyfox/server/data/config/admin/icons/ZoneMonitor.svg +1 -0
  39. data/lib/rubyfox/server/data/config/core.xml +2 -2
  40. data/lib/rubyfox/server/data/config/log4j.properties +7 -7
  41. data/lib/rubyfox/server/data/config/server.xml +9 -10
  42. data/lib/rubyfox/server/data/config/wordsFile.txt +0 -2
  43. data/lib/rubyfox/server/data/data/GeoLite2-Country.mmdb +0 -0
  44. data/lib/rubyfox/server/data/{config → data/buddylists/BasicExamples}/.keep +0 -0
  45. data/lib/rubyfox/server/data/data/{buddylists → uploads}/.keep +0 -0
  46. data/lib/rubyfox/server/data/lib/BlueBox.war +0 -0
  47. data/lib/rubyfox/server/data/lib/apache-tomcat/.RELEASE-NOTES.swp +0 -0
  48. data/lib/rubyfox/server/data/lib/apache-tomcat/LICENSE +1061 -0
  49. data/lib/rubyfox/server/data/lib/apache-tomcat/NOTICE +68 -0
  50. data/lib/rubyfox/server/data/lib/apache-tomcat/README.md +79 -0
  51. data/lib/rubyfox/server/data/lib/apache-tomcat/RELEASE-NOTES +174 -0
  52. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/bootstrap.jar +0 -0
  53. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/catalina-tasks.xml +39 -0
  54. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/catalina.bat +387 -0
  55. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/catalina.sh +690 -0
  56. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/ciphers.bat +58 -0
  57. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/ciphers.sh +60 -0
  58. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/commons-daemon-native.tar.gz +0 -0
  59. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/commons-daemon.jar +0 -0
  60. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/configtest.bat +58 -0
  61. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/configtest.sh +60 -0
  62. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/daemon.sh +293 -0
  63. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/digest.bat +58 -0
  64. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/digest.sh +60 -0
  65. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/makebase.bat +114 -0
  66. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/makebase.sh +115 -0
  67. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/setclasspath.bat +94 -0
  68. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/setclasspath.sh +98 -0
  69. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/shutdown.bat +58 -0
  70. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/shutdown.sh +60 -0
  71. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/startup.bat +58 -0
  72. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/startup.sh +60 -0
  73. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tomcat-juli.jar +0 -0
  74. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tomcat-native.tar.gz +0 -0
  75. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tool-wrapper.bat +110 -0
  76. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tool-wrapper.sh +153 -0
  77. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/version.bat +58 -0
  78. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/version.sh +60 -0
  79. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/Catalina/localhost/rewrite.config +1 -0
  80. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/catalina.policy +260 -0
  81. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/catalina.properties +206 -0
  82. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/context.xml +31 -0
  83. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/jaspic-providers.xml +23 -0
  84. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/jaspic-providers.xsd +53 -0
  85. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/keystore.jks +0 -0
  86. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/logging.properties +79 -0
  87. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/server.xml +161 -0
  88. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/tomcat-users.xml +41 -0
  89. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/tomcat-users.xsd +59 -0
  90. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/web.xml +4737 -0
  91. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/annotations-api.jar +0 -0
  92. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-ant.jar +0 -0
  93. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-ha.jar +0 -0
  94. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-ssi.jar +0 -0
  95. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-storeconfig.jar +0 -0
  96. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-tribes.jar +0 -0
  97. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina.jar +0 -0
  98. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/ecj-4.15.jar +0 -0
  99. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/el-api.jar +0 -0
  100. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jasper-el.jar +0 -0
  101. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jasper.jar +0 -0
  102. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jaspic-api.jar +0 -0
  103. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jsp-api.jar +0 -0
  104. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/servlet-api.jar +0 -0
  105. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/sfs2x-ws-helper.jar +0 -0
  106. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-api.jar +0 -0
  107. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-coyote.jar +0 -0
  108. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-dbcp.jar +0 -0
  109. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-cs.jar +0 -0
  110. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-de.jar +0 -0
  111. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-es.jar +0 -0
  112. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-fr.jar +0 -0
  113. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-ja.jar +0 -0
  114. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-ko.jar +0 -0
  115. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-pt-BR.jar +0 -0
  116. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-ru.jar +0 -0
  117. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-zh-CN.jar +0 -0
  118. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-jdbc.jar +0 -0
  119. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-jni.jar +0 -0
  120. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-util-scan.jar +0 -0
  121. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-util.jar +0 -0
  122. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-websocket.jar +0 -0
  123. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/websocket-api.jar +0 -0
  124. data/lib/rubyfox/server/data/{extensions → lib/apache-tomcat/logs}/.keep +0 -0
  125. data/lib/rubyfox/server/data/lib/{jetty/lib/ext/.donotdelete → apache-tomcat/temp/safeToDelete.tmp} +0 -0
  126. data/lib/rubyfox/server/data/lib/{jetty/resources → apache-tomcat/work}/.keep +0 -0
  127. data/lib/rubyfox/server/data/lib/commons-collections-3.2.2.jar +0 -0
  128. data/lib/rubyfox/server/data/lib/commons-compress-1.19.jar +0 -0
  129. data/lib/rubyfox/server/data/lib/js/LibApi.js +48 -181
  130. data/lib/rubyfox/server/data/lib/sfs2x-admin.jar +0 -0
  131. data/lib/rubyfox/server/data/lib/sfs2x-core.jar +0 -0
  132. data/lib/rubyfox/server/data/lib/sfs2x-lib.jar +0 -0
  133. data/lib/rubyfox/server/data/lib/sfs2x-util.jar +0 -0
  134. data/lib/rubyfox/server/data/lib/sfs2x.jar +0 -0
  135. data/lib/rubyfox/server/data/sfs2x-service +6 -6
  136. data/lib/rubyfox/server/data/sfs2x-service.vmoptions +1 -1
  137. data/lib/rubyfox/server/data/sfs2x.sh +1 -1
  138. data/lib/rubyfox/server/data/www/BlueBox.war +0 -0
  139. data/lib/rubyfox/server/data/www/HelloServlet/index.jsp +1 -1
  140. data/lib/rubyfox/server/data/www/{root → ROOT}/_css_/default.css +0 -0
  141. data/lib/rubyfox/server/data/www/{root → ROOT}/_css_/reset.css +0 -0
  142. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/background_gradient.png +0 -0
  143. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/background_logo.png +0 -0
  144. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/favicon.png +0 -0
  145. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/logo_smartfoxserver.png +0 -0
  146. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/_changes-to-default-themes_.txt +15 -0
  147. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/bootstrap.min.css +7 -0
  148. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/custom-bootstrap.min.css +1 -0
  149. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/css/all.min.css +5 -0
  150. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.eot +0 -0
  151. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.svg +3459 -0
  152. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.ttf +0 -0
  153. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.woff +0 -0
  154. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  155. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.eot +0 -0
  156. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.svg +803 -0
  157. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.ttf +0 -0
  158. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.woff +0 -0
  159. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  160. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.eot +0 -0
  161. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.svg +4527 -0
  162. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.ttf +0 -0
  163. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.woff +0 -0
  164. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  165. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fonts.css +175 -0
  166. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/jquery.scrolling-tabs.min.css +8 -0
  167. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/kendo.custom-bootstrap-v4.css +15280 -0
  168. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/reset.css +54 -0
  169. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/style.css +1428 -0
  170. data/lib/rubyfox/server/data/www/ROOT/admin/assets/data/countries.geo.json +178 -0
  171. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.otf +0 -0
  172. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.ttf +0 -0
  173. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.woff +0 -0
  174. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.woff2 +0 -0
  175. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300.ttf +0 -0
  176. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300.woff +0 -0
  177. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300.woff2 +0 -0
  178. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300italic.ttf +0 -0
  179. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300italic.woff +0 -0
  180. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300italic.woff2 +0 -0
  181. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600.ttf +0 -0
  182. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600.woff +0 -0
  183. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600.woff2 +0 -0
  184. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600italic.ttf +0 -0
  185. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600italic.woff +0 -0
  186. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600italic.woff2 +0 -0
  187. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700.ttf +0 -0
  188. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700.woff +0 -0
  189. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700.woff2 +0 -0
  190. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700italic.ttf +0 -0
  191. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700italic.woff +0 -0
  192. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700italic.woff2 +0 -0
  193. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800.ttf +0 -0
  194. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800.woff +0 -0
  195. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800.woff2 +0 -0
  196. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800italic.ttf +0 -0
  197. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800italic.woff +0 -0
  198. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800italic.woff2 +0 -0
  199. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-italic.ttf +0 -0
  200. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-italic.woff +0 -0
  201. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-italic.woff2 +0 -0
  202. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-regular.ttf +0 -0
  203. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-regular.woff +0 -0
  204. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-regular.woff2 +0 -0
  205. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-300.ttf +0 -0
  206. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-300.woff +0 -0
  207. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-300.woff2 +0 -0
  208. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-700.ttf +0 -0
  209. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-700.woff +0 -0
  210. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-700.woff2 +0 -0
  211. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/compare.png +0 -0
  212. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsChart.png +0 -0
  213. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsCompare.png +0 -0
  214. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsFilter.png +0 -0
  215. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsMap.png +0 -0
  216. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsTable.png +0 -0
  217. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyChart.png +0 -0
  218. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyCompare.png +0 -0
  219. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyFilter.png +0 -0
  220. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyTable.png +0 -0
  221. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/apple-touch-icon-180x180.png +0 -0
  222. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/favicon-16x16.png +0 -0
  223. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/favicon-32x32.png +0 -0
  224. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/favicon-64x64.png +0 -0
  225. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/logo.png +0 -0
  226. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/application.bundle.js +2208 -0
  227. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-0.bundle.js +7662 -0
  228. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-1.bundle.js +929 -0
  229. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-10.bundle.js +766 -0
  230. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-11.bundle.js +71 -0
  231. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-12.bundle.js +1184 -0
  232. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-12~module-13~module-9.bundle.js +2618 -0
  233. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-13.bundle.js +3315 -0
  234. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-3.bundle.js +280 -0
  235. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-4.bundle.js +1122 -0
  236. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-5.bundle.js +2624 -0
  237. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-6.bundle.js +801 -0
  238. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-7.bundle.js +607 -0
  239. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-8.bundle.js +1221 -0
  240. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-9.bundle.js +847 -0
  241. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/vendors~module-0.bundle.js +3240 -0
  242. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/vendors~module-0~module-1~module-13~module-4~module-5~module-7~module-8.bundle.js +17357 -0
  243. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/vendors~module-9.bundle.js +807 -0
  244. data/lib/rubyfox/server/data/{lib/jetty/webapps → www/ROOT/admin/assets/js/custom-modules}/.keep +0 -0
  245. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/bootstrap.min.js +7 -0
  246. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/jquery-3.3.1.min.js +2 -0
  247. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/jquery.scrolling-tabs.min.js +8 -0
  248. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/js.cookie.min.js +8 -0
  249. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/kendo.all.min.js +136 -0
  250. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/popper.min.js +5 -0
  251. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/sfs2x-api-1.7.15.js +8 -0
  252. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/versions-readme.txt +16 -0
  253. data/lib/rubyfox/server/data/www/ROOT/admin/index.html +244 -0
  254. data/lib/rubyfox/server/data/www/ROOT/admin/manifest.json +25 -0
  255. data/lib/rubyfox/server/data/www/ROOT/admin/modules/analytics.html +328 -0
  256. data/lib/rubyfox/server/data/www/ROOT/admin/modules/ban-manager.html +160 -0
  257. data/lib/rubyfox/server/data/www/ROOT/admin/modules/blue-box-monitor.html +37 -0
  258. data/lib/rubyfox/server/data/www/ROOT/admin/modules/console.html +135 -0
  259. data/lib/rubyfox/server/data/www/ROOT/admin/modules/dashboard.html +368 -0
  260. data/lib/rubyfox/server/data/www/ROOT/admin/modules/extension-manager.html +98 -0
  261. data/lib/rubyfox/server/data/www/ROOT/admin/modules/license-manager.html +117 -0
  262. data/lib/rubyfox/server/data/www/ROOT/admin/modules/log-viewer.html +194 -0
  263. data/lib/rubyfox/server/data/www/ROOT/admin/modules/server-configurator.html +55 -0
  264. data/lib/rubyfox/server/data/www/ROOT/admin/modules/servlet-manager.html +98 -0
  265. data/lib/rubyfox/server/data/www/ROOT/admin/modules/zone-configurator.html +62 -0
  266. data/lib/rubyfox/server/data/www/ROOT/admin/modules/zone-monitor.html +346 -0
  267. data/lib/rubyfox/server/data/www/{root → ROOT}/crossdomain.xml +0 -0
  268. data/lib/rubyfox/server/data/www/{root → ROOT}/examples/index.html +0 -0
  269. data/lib/rubyfox/server/data/www/{root → ROOT}/favicon.ico +0 -0
  270. data/lib/rubyfox/server/data/www/{root → ROOT}/favicon.png +0 -0
  271. data/lib/rubyfox/server/data/www/{root → ROOT}/index.html +0 -0
  272. data/lib/rubyfox/server/data/www/host-manager/META-INF/context.xml +24 -0
  273. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/jsp/401.jsp +71 -0
  274. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/jsp/403.jsp +90 -0
  275. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/jsp/404.jsp +62 -0
  276. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/web.xml +131 -0
  277. data/lib/rubyfox/server/data/www/host-manager/images/asf-logo.svg +226 -0
  278. data/lib/rubyfox/server/data/www/host-manager/images/tomcat.gif +0 -0
  279. data/lib/rubyfox/server/data/www/host-manager/index.jsp +18 -0
  280. data/lib/rubyfox/server/data/www/host-manager/manager.xml +26 -0
  281. data/lib/rubyfox/server/data/{logs → www/logsBackup}/.keep +0 -0
  282. data/lib/rubyfox/server/data/www/manager/META-INF/context.xml +24 -0
  283. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/401.jsp +80 -0
  284. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/403.jsp +100 -0
  285. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/404.jsp +63 -0
  286. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/connectorCerts.jsp +92 -0
  287. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/connectorCiphers.jsp +92 -0
  288. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/connectorTrustedCerts.jsp +92 -0
  289. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/sessionDetail.jsp +197 -0
  290. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/sessionsList.jsp +170 -0
  291. data/lib/rubyfox/server/data/www/manager/WEB-INF/web.xml +195 -0
  292. data/lib/rubyfox/server/data/www/manager/images/asf-logo.svg +226 -0
  293. data/lib/rubyfox/server/data/www/manager/images/tomcat.gif +0 -0
  294. data/lib/rubyfox/server/data/www/manager/index.jsp +18 -0
  295. data/lib/rubyfox/server/data/www/manager/status.xsd +84 -0
  296. data/lib/rubyfox/server/data/www/manager/xform.xsl +125 -0
  297. data/lib/rubyfox/server/version.rb +1 -1
  298. metadata +257 -339
  299. data/lib/rubyfox/server/data/config/ExtensionManagerLock.txt +0 -2
  300. data/lib/rubyfox/server/data/lib/Lib/reindex$py.class +0 -0
  301. data/lib/rubyfox/server/data/lib/jetty/VERSION.txt +0 -9707
  302. data/lib/rubyfox/server/data/lib/jetty/etc/README.spnego +0 -62
  303. data/lib/rubyfox/server/data/lib/jetty/etc/example-quickstart.xml +0 -27
  304. data/lib/rubyfox/server/data/lib/jetty/etc/gcloud-memcached-session-context.xml +0 -33
  305. data/lib/rubyfox/server/data/lib/jetty/etc/gcloud-session-context.xml +0 -25
  306. data/lib/rubyfox/server/data/lib/jetty/etc/hawtio.xml +0 -16
  307. data/lib/rubyfox/server/data/lib/jetty/etc/home-base-warning.xml +0 -8
  308. data/lib/rubyfox/server/data/lib/jetty/etc/jamon.xml +0 -32
  309. data/lib/rubyfox/server/data/lib/jetty/etc/jdbcRealm.properties +0 -72
  310. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-alpn.xml +0 -32
  311. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-annotations.xml +0 -20
  312. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-cdi.xml +0 -19
  313. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-debug.xml +0 -36
  314. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-debuglog.xml +0 -25
  315. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-deploy.xml +0 -76
  316. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gcloud-memcached-sessions.xml +0 -27
  317. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gcloud-session-idmgr.xml +0 -19
  318. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gcloud-sessions.xml +0 -27
  319. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gzip-inflate.xml +0 -12
  320. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gzip.xml +0 -67
  321. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http-forwarded.xml +0 -20
  322. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http.xml +0 -47
  323. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http2.xml +0 -25
  324. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http2c.xml +0 -17
  325. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-https.xml +0 -29
  326. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-infinispan.xml +0 -39
  327. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-ipaccess.xml +0 -28
  328. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jaas.xml +0 -16
  329. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jdbc-sessions.xml +0 -34
  330. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jmx-remote.xml +0 -40
  331. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jmx.xml +0 -32
  332. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-logging.xml +0 -36
  333. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-lowresources.xml +0 -22
  334. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-monitor.xml +0 -30
  335. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-nosql.xml +0 -19
  336. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-plus.xml +0 -26
  337. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-proxy-protocol-ssl.xml +0 -10
  338. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-proxy-protocol.xml +0 -10
  339. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-proxy.xml +0 -35
  340. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-requestlog.xml +0 -30
  341. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-rewrite-customizer.xml +0 -17
  342. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-rewrite.xml +0 -31
  343. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-setuid.xml +0 -30
  344. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-spring.xml +0 -61
  345. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-ssl-context.xml +0 -31
  346. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-ssl.xml +0 -58
  347. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-started.xml +0 -15
  348. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-stats.xml +0 -18
  349. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-stop.xml +0 -6
  350. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-threadlimit.xml +0 -20
  351. data/lib/rubyfox/server/data/lib/jetty/etc/jetty.conf +0 -12
  352. data/lib/rubyfox/server/data/lib/jetty/etc/jetty.xml +0 -195
  353. data/lib/rubyfox/server/data/lib/jetty/etc/jminix.xml +0 -12
  354. data/lib/rubyfox/server/data/lib/jetty/etc/jolokia.xml +0 -16
  355. data/lib/rubyfox/server/data/lib/jetty/etc/keystore +0 -0
  356. data/lib/rubyfox/server/data/lib/jetty/etc/krb5.ini +0 -23
  357. data/lib/rubyfox/server/data/lib/jetty/etc/rewrite-compactpath.xml +0 -10
  358. data/lib/rubyfox/server/data/lib/jetty/etc/sessions/hazelcast/default.xml +0 -19
  359. data/lib/rubyfox/server/data/lib/jetty/etc/sessions/hazelcast/remote.xml +0 -19
  360. data/lib/rubyfox/server/data/lib/jetty/etc/spnego.conf +0 -19
  361. data/lib/rubyfox/server/data/lib/jetty/etc/spnego.properties +0 -1
  362. data/lib/rubyfox/server/data/lib/jetty/etc/webdefault.xml +0 -539
  363. data/lib/rubyfox/server/data/lib/jetty/lib/alpn-api-1.1.3.v20160715.jar +0 -0
  364. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.eclipse.jdt.core.compiler.ecj-4.4.2.jar +0 -0
  365. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.3.27.v20190418.jar +0 -0
  366. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.mortbay.jasper.apache-el-8.0.33.jar +0 -0
  367. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.0.33.jar +0 -0
  368. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar +0 -0
  369. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar +0 -0
  370. data/lib/rubyfox/server/data/lib/jetty/lib/asm-6.0.jar +0 -0
  371. data/lib/rubyfox/server/data/lib/jetty/lib/asm-commons-6.0.jar +0 -0
  372. data/lib/rubyfox/server/data/lib/jetty/lib/fcgi/fcgi-client-9.3.27.v20190418.jar +0 -0
  373. data/lib/rubyfox/server/data/lib/jetty/lib/fcgi/fcgi-server-9.3.27.v20190418.jar +0 -0
  374. data/lib/rubyfox/server/data/lib/jetty/lib/http2/http2-common-9.3.27.v20190418.jar +0 -0
  375. data/lib/rubyfox/server/data/lib/jetty/lib/http2/http2-hpack-9.3.27.v20190418.jar +0 -0
  376. data/lib/rubyfox/server/data/lib/jetty/lib/http2/http2-server-9.3.27.v20190418.jar +0 -0
  377. data/lib/rubyfox/server/data/lib/jetty/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar +0 -0
  378. data/lib/rubyfox/server/data/lib/jetty/lib/javax-websocket-client-impl-9.3.27.v20190418.jar +0 -0
  379. data/lib/rubyfox/server/data/lib/jetty/lib/javax-websocket-server-impl-9.3.27.v20190418.jar +0 -0
  380. data/lib/rubyfox/server/data/lib/jetty/lib/javax.annotation-api-1.2.jar +0 -0
  381. data/lib/rubyfox/server/data/lib/jetty/lib/javax.websocket-api-1.0.jar +0 -0
  382. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-alpn-java-server-9.3.27.v20190418.jar +0 -0
  383. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-alpn-server-9.3.27.v20190418.jar +0 -0
  384. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-annotations-9.3.27.v20190418.jar +0 -0
  385. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-client-9.3.27.v20190418.jar +0 -0
  386. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-continuation-9.3.27.v20190418.jar +0 -0
  387. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-deploy-9.3.27.v20190418.jar +0 -0
  388. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-gcloud-memcached-session-manager-9.3.27.v20190418.jar +0 -0
  389. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-gcloud-session-manager-9.3.27.v20190418.jar +0 -0
  390. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-hazelcast-9.3.27.v20190418.jar +0 -0
  391. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-http-9.3.27.v20190418.jar +0 -0
  392. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-infinispan-9.3.27.v20190418.jar +0 -0
  393. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-io-9.3.27.v20190418.jar +0 -0
  394. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jaas-9.3.27.v20190418.jar +0 -0
  395. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jaspi-9.3.27.v20190418.jar +0 -0
  396. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jmx-9.3.27.v20190418.jar +0 -0
  397. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jndi-9.3.27.v20190418.jar +0 -0
  398. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-nosql-9.3.27.v20190418.jar +0 -0
  399. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-plus-9.3.27.v20190418.jar +0 -0
  400. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-proxy-9.3.27.v20190418.jar +0 -0
  401. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-quickstart-9.3.27.v20190418.jar +0 -0
  402. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-rewrite-9.3.27.v20190418.jar +0 -0
  403. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-schemas-3.1.jar +0 -0
  404. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-security-9.3.27.v20190418.jar +0 -0
  405. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-server-9.3.27.v20190418.jar +0 -0
  406. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-servlet-9.3.27.v20190418.jar +0 -0
  407. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-servlets-9.3.27.v20190418.jar +0 -0
  408. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-util-9.3.27.v20190418.jar +0 -0
  409. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-webapp-9.3.27.v20190418.jar +0 -0
  410. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-xml-9.3.27.v20190418.jar +0 -0
  411. data/lib/rubyfox/server/data/lib/jetty/lib/jndi/javax.mail.glassfish-1.4.1.v201005082020.jar +0 -0
  412. data/lib/rubyfox/server/data/lib/jetty/lib/jndi/javax.transaction-api-1.2.jar +0 -0
  413. data/lib/rubyfox/server/data/lib/jetty/lib/monitor/jetty-monitor-9.3.27.v20190418.jar +0 -0
  414. data/lib/rubyfox/server/data/lib/jetty/lib/servlet-api-3.1.jar +0 -0
  415. data/lib/rubyfox/server/data/lib/jetty/lib/setuid/jetty-setuid-java-1.0.3.jar +0 -0
  416. data/lib/rubyfox/server/data/lib/jetty/lib/setuid/libsetuid-linux.so +0 -0
  417. data/lib/rubyfox/server/data/lib/jetty/lib/setuid/libsetuid-osx.so +0 -0
  418. data/lib/rubyfox/server/data/lib/jetty/lib/spring/jetty-spring-9.3.27.v20190418.jar +0 -0
  419. data/lib/rubyfox/server/data/lib/jetty/lib/start.jar +0 -0
  420. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-api-9.3.27.v20190418.jar +0 -0
  421. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-client-9.3.27.v20190418.jar +0 -0
  422. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-common-9.3.27.v20190418.jar +0 -0
  423. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-server-9.3.27.v20190418.jar +0 -0
  424. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-servlet-9.3.27.v20190418.jar +0 -0
  425. data/lib/rubyfox/server/data/lib/jetty/license-eplv10-aslv20.html +0 -576
  426. data/lib/rubyfox/server/data/lib/jetty/modules/.donotdelete +0 -0
  427. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0.mod +0 -8
  428. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_05.mod +0 -8
  429. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_101.mod +0 -8
  430. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_102.mod +0 -8
  431. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_11.mod +0 -8
  432. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_111.mod +0 -8
  433. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_112.mod +0 -8
  434. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_121.mod +0 -8
  435. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_131.mod +0 -8
  436. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_141.mod +0 -8
  437. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_144.mod +0 -8
  438. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_151.mod +0 -8
  439. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_152.mod +0 -8
  440. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_161.mod +0 -8
  441. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_162.mod +0 -8
  442. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_171.mod +0 -8
  443. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_172.mod +0 -8
  444. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_181.mod +0 -8
  445. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_191.mod +0 -8
  446. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_192.mod +0 -8
  447. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_20.mod +0 -8
  448. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_201.mod +0 -8
  449. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_202.mod +0 -8
  450. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_211.mod +0 -8
  451. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_212.mod +0 -8
  452. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_25.mod +0 -8
  453. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_31.mod +0 -8
  454. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_40.mod +0 -8
  455. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_45.mod +0 -8
  456. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_51.mod +0 -8
  457. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_60.mod +0 -8
  458. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_65.mod +0 -8
  459. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_66.mod +0 -8
  460. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_71.mod +0 -8
  461. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_72.mod +0 -8
  462. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_73.mod +0 -8
  463. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_74.mod +0 -8
  464. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_77.mod +0 -8
  465. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_91.mod +0 -8
  466. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_92.mod +0 -8
  467. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-8.mod +0 -30
  468. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-9.mod +0 -5
  469. data/lib/rubyfox/server/data/lib/jetty/modules/alpn.mod +0 -22
  470. data/lib/rubyfox/server/data/lib/jetty/modules/annotations.mod +0 -17
  471. data/lib/rubyfox/server/data/lib/jetty/modules/apache-jsp.mod +0 -10
  472. data/lib/rubyfox/server/data/lib/jetty/modules/apache-jstl.mod +0 -9
  473. data/lib/rubyfox/server/data/lib/jetty/modules/cdi.mod +0 -38
  474. data/lib/rubyfox/server/data/lib/jetty/modules/client.mod +0 -6
  475. data/lib/rubyfox/server/data/lib/jetty/modules/continuation.mod +0 -6
  476. data/lib/rubyfox/server/data/lib/jetty/modules/debug.mod +0 -29
  477. data/lib/rubyfox/server/data/lib/jetty/modules/debuglog.mod +0 -25
  478. data/lib/rubyfox/server/data/lib/jetty/modules/deploy.mod +0 -31
  479. data/lib/rubyfox/server/data/lib/jetty/modules/ext.mod +0 -11
  480. data/lib/rubyfox/server/data/lib/jetty/modules/fcgi.mod +0 -15
  481. data/lib/rubyfox/server/data/lib/jetty/modules/flight-recorder.mod +0 -13
  482. data/lib/rubyfox/server/data/lib/jetty/modules/gcloud-memcached-sessions.mod +0 -26
  483. data/lib/rubyfox/server/data/lib/jetty/modules/gcloud-session-idmgr.mod +0 -63
  484. data/lib/rubyfox/server/data/lib/jetty/modules/gcloud-sessions.mod +0 -11
  485. data/lib/rubyfox/server/data/lib/jetty/modules/gzip-inflate.mod +0 -17
  486. data/lib/rubyfox/server/data/lib/jetty/modules/gzip.mod +0 -23
  487. data/lib/rubyfox/server/data/lib/jetty/modules/hawtio.mod +0 -28
  488. data/lib/rubyfox/server/data/lib/jetty/modules/hazelcast-embedded-sessions.mod +0 -26
  489. data/lib/rubyfox/server/data/lib/jetty/modules/hazelcast-remote-sessions.mod +0 -26
  490. data/lib/rubyfox/server/data/lib/jetty/modules/home-base-warning.mod +0 -7
  491. data/lib/rubyfox/server/data/lib/jetty/modules/http-forwarded.mod +0 -24
  492. data/lib/rubyfox/server/data/lib/jetty/modules/http.mod +0 -39
  493. data/lib/rubyfox/server/data/lib/jetty/modules/http2.mod +0 -20
  494. data/lib/rubyfox/server/data/lib/jetty/modules/http2c.mod +0 -22
  495. data/lib/rubyfox/server/data/lib/jetty/modules/https.mod +0 -14
  496. data/lib/rubyfox/server/data/lib/jetty/modules/infinispan.mod +0 -33
  497. data/lib/rubyfox/server/data/lib/jetty/modules/ipaccess.mod +0 -9
  498. data/lib/rubyfox/server/data/lib/jetty/modules/jaas.mod +0 -17
  499. data/lib/rubyfox/server/data/lib/jetty/modules/jamon.mod +0 -31
  500. data/lib/rubyfox/server/data/lib/jetty/modules/jaspi.mod +0 -10
  501. data/lib/rubyfox/server/data/lib/jetty/modules/jdbc-sessions.mod +0 -27
  502. data/lib/rubyfox/server/data/lib/jetty/modules/jminix.mod +0 -41
  503. data/lib/rubyfox/server/data/lib/jetty/modules/jmx-remote.mod +0 -16
  504. data/lib/rubyfox/server/data/lib/jetty/modules/jmx.mod +0 -13
  505. data/lib/rubyfox/server/data/lib/jetty/modules/jndi.mod +0 -11
  506. data/lib/rubyfox/server/data/lib/jetty/modules/jolokia.mod +0 -19
  507. data/lib/rubyfox/server/data/lib/jetty/modules/jsp.mod +0 -9
  508. data/lib/rubyfox/server/data/lib/jetty/modules/jstl.mod +0 -8
  509. data/lib/rubyfox/server/data/lib/jetty/modules/jvm.mod +0 -22
  510. data/lib/rubyfox/server/data/lib/jetty/modules/logging.mod +0 -36
  511. data/lib/rubyfox/server/data/lib/jetty/modules/lowresources.mod +0 -28
  512. data/lib/rubyfox/server/data/lib/jetty/modules/monitor.mod +0 -13
  513. data/lib/rubyfox/server/data/lib/jetty/modules/nosql.mod +0 -31
  514. data/lib/rubyfox/server/data/lib/jetty/modules/npn.mod +0 -4
  515. data/lib/rubyfox/server/data/lib/jetty/modules/plus.mod +0 -15
  516. data/lib/rubyfox/server/data/lib/jetty/modules/proxy-protocol-ssl.mod +0 -9
  517. data/lib/rubyfox/server/data/lib/jetty/modules/proxy-protocol.mod +0 -9
  518. data/lib/rubyfox/server/data/lib/jetty/modules/proxy.mod +0 -22
  519. data/lib/rubyfox/server/data/lib/jetty/modules/quickstart.mod +0 -11
  520. data/lib/rubyfox/server/data/lib/jetty/modules/requestlog.mod +0 -40
  521. data/lib/rubyfox/server/data/lib/jetty/modules/resources.mod +0 -10
  522. data/lib/rubyfox/server/data/lib/jetty/modules/rewrite-compactpath.mod +0 -10
  523. data/lib/rubyfox/server/data/lib/jetty/modules/rewrite-customizer.mod +0 -24
  524. data/lib/rubyfox/server/data/lib/jetty/modules/rewrite.mod +0 -23
  525. data/lib/rubyfox/server/data/lib/jetty/modules/security.mod +0 -9
  526. data/lib/rubyfox/server/data/lib/jetty/modules/server.mod +0 -82
  527. data/lib/rubyfox/server/data/lib/jetty/modules/servlet.mod +0 -9
  528. data/lib/rubyfox/server/data/lib/jetty/modules/servlets.mod +0 -11
  529. data/lib/rubyfox/server/data/lib/jetty/modules/setuid.mod +0 -19
  530. data/lib/rubyfox/server/data/lib/jetty/modules/spring.mod +0 -17
  531. data/lib/rubyfox/server/data/lib/jetty/modules/ssl.mod +0 -101
  532. data/lib/rubyfox/server/data/lib/jetty/modules/stats.mod +0 -9
  533. data/lib/rubyfox/server/data/lib/jetty/modules/threadlimit.mod +0 -22
  534. data/lib/rubyfox/server/data/lib/jetty/modules/webapp.mod +0 -10
  535. data/lib/rubyfox/server/data/lib/jetty/modules/websocket.mod +0 -12
  536. data/lib/rubyfox/server/data/lib/jetty/notice.html +0 -111
  537. data/lib/rubyfox/server/data/lib/jetty/start.d/README.TXT +0 -24
  538. data/lib/rubyfox/server/data/lib/jetty/start.d/http.ini +0 -7
  539. data/lib/rubyfox/server/data/lib/jetty/start.d/https.ini +0 -10
  540. data/lib/rubyfox/server/data/lib/jetty/start.d/ssl.ini +0 -19
  541. data/lib/rubyfox/server/data/lib/jetty/start.ini +0 -85
  542. data/lib/rubyfox/server/data/www/.keep +0 -0
  543. data/lib/rubyfox/server/data/www/HelloServlet/META-INF/context.xml +0 -2
  544. data/lib/rubyfox/server/data/www/PyServletExample/MyModule$py.class +0 -0
  545. data/lib/rubyfox/server/data/www/PyServletExample/MyModule.py +0 -5
  546. data/lib/rubyfox/server/data/www/PyServletExample/WEB-INF/web.xml +0 -37
  547. data/lib/rubyfox/server/data/www/PyServletExample/errors/404.htm +0 -20
  548. data/lib/rubyfox/server/data/www/PyServletExample/index.py +0 -42
  549. data/lib/rubyfox/server/data/www/root/admin/.keep +0 -0
  550. data/lib/rubyfox/server/data/www/root/admin/AdminTool.swf +0 -0
  551. data/lib/rubyfox/server/data/www/root/admin/ReleaseNotes.txt +0 -201
  552. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/adobeFlashPlayer.png +0 -0
  553. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/advanced.png +0 -0
  554. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/analytics.png +0 -0
  555. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/banManager.png +0 -0
  556. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bannedIPs.png +0 -0
  557. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bannedUsernames.png +0 -0
  558. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bookmarks.png +0 -0
  559. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bootLog.png +0 -0
  560. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/buddyList.png +0 -0
  561. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/buddyProperties.png +0 -0
  562. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/connection.png +0 -0
  563. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/databaseManager.png +0 -0
  564. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/floodFilter.png +0 -0
  565. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/gameSettings.png +0 -0
  566. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/general.png +0 -0
  567. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/globalServerStatus.png +0 -0
  568. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/hTML5WebSockets.png +0 -0
  569. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/iPDiscovery.png +0 -0
  570. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/iPFilter.png +0 -0
  571. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/jVMSettings.png +0 -0
  572. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/logsDownload.png +0 -0
  573. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/mMOSettings.png +0 -0
  574. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/mailer.png +0 -0
  575. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/permissionsAndEvents.png +0 -0
  576. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/privilegeManager.png +0 -0
  577. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/remoteAdmin.png +0 -0
  578. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/roomExtension.png +0 -0
  579. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/roomVariables.png +0 -0
  580. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/roomsAndGroups.png +0 -0
  581. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeLog.png +0 -0
  582. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeRoomSettings.png +0 -0
  583. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeUserSettings.png +0 -0
  584. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeZoneSettings.png +0 -0
  585. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsApplication.png +0 -0
  586. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsDemographics.png +0 -0
  587. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsExceptions.png +0 -0
  588. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsOverview.png +0 -0
  589. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsTechnology.png +0 -0
  590. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/systemQueueStatus.png +0 -0
  591. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/threadPools.png +0 -0
  592. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/userManagement.png +0 -0
  593. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/userVariables.png +0 -0
  594. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/webServer.png +0 -0
  595. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/wordsFilter.png +0 -0
  596. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/zoneExtension.png +0 -0
  597. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/zoneTraffic.png +0 -0
  598. data/lib/rubyfox/server/data/www/root/admin/expressInstall.swf +0 -0
  599. data/lib/rubyfox/server/data/www/root/admin/index.html +0 -124
  600. data/lib/rubyfox/server/data/www/root/admin/modules/Analytics.swf +0 -0
  601. data/lib/rubyfox/server/data/www/root/admin/modules/BanManager.swf +0 -0
  602. data/lib/rubyfox/server/data/www/root/admin/modules/BlueBoxMonitor.swf +0 -0
  603. data/lib/rubyfox/server/data/www/root/admin/modules/Console.swf +0 -0
  604. data/lib/rubyfox/server/data/www/root/admin/modules/Dashboard.swf +0 -0
  605. data/lib/rubyfox/server/data/www/root/admin/modules/ExtensionManager.swf +0 -0
  606. data/lib/rubyfox/server/data/www/root/admin/modules/LicenseManager.swf +0 -0
  607. data/lib/rubyfox/server/data/www/root/admin/modules/LogViewer.swf +0 -0
  608. data/lib/rubyfox/server/data/www/root/admin/modules/ServerConfigurator.swf +0 -0
  609. data/lib/rubyfox/server/data/www/root/admin/modules/ServletManager.swf +0 -0
  610. data/lib/rubyfox/server/data/www/root/admin/modules/ZoneConfigurator.swf +0 -0
  611. data/lib/rubyfox/server/data/www/root/admin/modules/ZoneMonitor.swf +0 -0
  612. data/lib/rubyfox/server/data/www/root/admin/swfobject.js +0 -4
  613. data/lib/rubyfox/server/data/www/root/examples/.keep +0 -0
  614. data/lib/rubyfox/server/data/www/sfs2x-ws.war +0 -0
  615. data/lib/rubyfox/server/data/www/sfs2x-ws.xml +0 -30
  616. data/lib/rubyfox/server/data/zones/BasicExamples.zone.xml +0 -147
@@ -1,15 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <!-- =============================================================== -->
5
- <!-- Mixin the Start FileNoticeLifeCycleListener -->
6
- <!-- =============================================================== -->
7
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
8
- <Call name="addLifeCycleListener">
9
- <Arg>
10
- <New class="org.eclipse.jetty.util.component.FileNoticeLifeCycleListener">
11
- <Arg><Property name="jetty.state" default="./jetty.state"/></Arg>
12
- </New>
13
- </Arg>
14
- </Call>
15
- </Configure>
@@ -1,18 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <!-- =============================================================== -->
5
- <!-- Mixin the Statistics Handler -->
6
- <!-- =============================================================== -->
7
-
8
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
9
- <Call name="insertHandler">
10
- <Arg>
11
- <New id="StatsHandler" class="org.eclipse.jetty.server.handler.StatisticsHandler">
12
- </New>
13
- </Arg>
14
- </Call>
15
- <Call class="org.eclipse.jetty.server.ServerConnectionStatistics" name="addToAllConnectors">
16
- <Arg><Ref refid="Server"/></Arg>
17
- </Call>
18
- </Configure>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <Configure id="Stop" class="org.eclipse.jetty.util.component.StopLifeCycle">
5
- <Arg><Ref refid="Server"/></Arg>
6
- </Configure>
@@ -1,20 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <!-- =============================================================== -->
5
- <!-- Mixin the Thread Limit Handler to the entire server -->
6
- <!-- =============================================================== -->
7
-
8
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
9
- <Call name="insertHandler">
10
- <Arg>
11
- <New id="ThreadLimitHandler" class="org.eclipse.jetty.server.handler.ThreadLimitHandler">
12
- <Arg name="forwardedHeader"><Property name="jetty.threadlimit.forwardedHeader"/></Arg>
13
- <Set name="enabled"><Property name="jetty.threadlimit.enabled" default="true"/></Set>
14
- <Set name="threadLimit"><Property name="jetty.threadlimit.threadLimit" default="10"/></Set>
15
- </New>
16
- </Arg>
17
- </Call>
18
- </Configure>
19
-
20
-
@@ -1,12 +0,0 @@
1
- # ========================================================
2
- # jetty.conf Configuration for jetty.sh script
3
- # --------------------------------------------------------
4
- # This file is used by the jetty.sh script to provide
5
- # extra configuration arguments for the start.jar command
6
- # created by that script.
7
- #
8
- # Each line in this file becomes an arguement to start.jar
9
- # in addition to those found in the start.ini file
10
- # =======================================================
11
- jetty-logging.xml
12
- jetty-started.xml
@@ -1,195 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <!-- =============================================================== -->
5
- <!-- Documentation of this file format can be found at: -->
6
- <!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax -->
7
- <!-- -->
8
- <!-- Additional configuration files are available in $JETTY_HOME/etc -->
9
- <!-- and can be mixed in. See start.ini file for the default -->
10
- <!-- configuration files. -->
11
- <!-- -->
12
- <!-- For a description of the configuration mechanism, see the -->
13
- <!-- output of: -->
14
- <!-- java -jar start.jar -? -->
15
- <!-- =============================================================== -->
16
-
17
- <!-- =============================================================== -->
18
- <!-- Configure a Jetty Server instance with an ID "Server" -->
19
- <!-- Other configuration files may also configure the "Server" -->
20
- <!-- ID, in which case they are adding configuration to the same -->
21
- <!-- instance. If other configuration have a different ID, they -->
22
- <!-- will create and configure another instance of Jetty. -->
23
- <!-- Consult the javadoc of o.e.j.server.Server for all -->
24
- <!-- configuration that may be set here. -->
25
- <!-- =============================================================== -->
26
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
27
-
28
- <!-- =========================================================== -->
29
- <!-- Configure the Server Thread Pool. -->
30
- <!-- The server holds a common thread pool which is used by -->
31
- <!-- default as the executor used by all connectors and servlet -->
32
- <!-- dispatches. -->
33
- <!-- -->
34
- <!-- Configuring a fixed thread pool is vital to controlling the -->
35
- <!-- maximal memory footprint of the server and is a key tuning -->
36
- <!-- parameter for tuning. In an application that rarely blocks -->
37
- <!-- then maximal threads may be close to the number of 5*CPUs. -->
38
- <!-- In an application that frequently blocks, then maximal -->
39
- <!-- threads should be set as high as possible given the memory -->
40
- <!-- available. -->
41
- <!-- -->
42
- <!-- Consult the javadoc of o.e.j.util.thread.QueuedThreadPool -->
43
- <!-- for all configuration that may be set here. -->
44
- <!-- =========================================================== -->
45
- <!-- uncomment to change type of threadpool
46
- <Arg name="threadpool"><New id="threadpool" class="org.eclipse.jetty.util.thread.QueuedThreadPool"/></Arg>
47
- -->
48
- <Get name="ThreadPool">
49
- <Set name="minThreads" type="int"><Property name="jetty.threadPool.minThreads" deprecated="threads.min" default="10"/></Set>
50
- <Set name="maxThreads" type="int"><Property name="jetty.threadPool.maxThreads" deprecated="threads.max" default="200"/></Set>
51
- <Set name="idleTimeout" type="int"><Property name="jetty.threadPool.idleTimeout" deprecated="threads.timeout" default="60000"/></Set>
52
- <Set name="detailedDump">false</Set>
53
- </Get>
54
-
55
- <!-- =========================================================== -->
56
- <!-- Add shared Scheduler instance -->
57
- <!-- =========================================================== -->
58
- <Call name="addBean">
59
- <Arg>
60
- <New class="org.eclipse.jetty.util.thread.ScheduledExecutorScheduler"/>
61
- </Arg>
62
- </Call>
63
-
64
- <!-- =========================================================== -->
65
- <!-- Http Configuration. -->
66
- <!-- This is a common configuration instance used by all -->
67
- <!-- connectors that can carry HTTP semantics (HTTP, HTTPS, etc.)-->
68
- <!-- It configures the non wire protocol aspects of the HTTP -->
69
- <!-- semantic. -->
70
- <!-- -->
71
- <!-- This configuration is only defined here and is used by -->
72
- <!-- reference from other XML files such as jetty-http.xml, -->
73
- <!-- jetty-https.xml and other configuration files which -->
74
- <!-- instantiate the connectors. -->
75
- <!-- -->
76
- <!-- Consult the javadoc of o.e.j.server.HttpConfiguration -->
77
- <!-- for all configuration that may be set here. -->
78
- <!-- =========================================================== -->
79
- <New id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
80
- <Set name="secureScheme"><Property name="jetty.httpConfig.secureScheme" default="https" /></Set>
81
- <Set name="securePort"><Property name="jetty.httpConfig.securePort" deprecated="jetty.secure.port" default="8443" /></Set>
82
- <Set name="outputBufferSize"><Property name="jetty.httpConfig.outputBufferSize" deprecated="jetty.output.buffer.size" default="32768" /></Set>
83
- <Set name="outputAggregationSize"><Property name="jetty.httpConfig.outputAggregationSize" deprecated="jetty.output.aggregation.size" default="8192" /></Set>
84
- <Set name="requestHeaderSize"><Property name="jetty.httpConfig.requestHeaderSize" deprecated="jetty.request.header.size" default="8192" /></Set>
85
- <Set name="responseHeaderSize"><Property name="jetty.httpConfig.responseHeaderSize" deprecated="jetty.response.header.size" default="8192" /></Set>
86
- <Set name="sendServerVersion"><Property name="jetty.httpConfig.sendServerVersion" deprecated="jetty.send.server.version" default="true" /></Set>
87
- <Set name="sendDateHeader"><Property name="jetty.httpConfig.sendDateHeader" deprecated="jetty.send.date.header" default="false" /></Set>
88
- <Set name="headerCacheSize"><Property name="jetty.httpConfig.headerCacheSize" default="512" /></Set>
89
- <Set name="delayDispatchUntilContent"><Property name="jetty.httpConfig.delayDispatchUntilContent" deprecated="jetty.delayDispatchUntilContent" default="true"/></Set>
90
- <Set name="maxErrorDispatches"><Property name="jetty.httpConfig.maxErrorDispatches" default="10"/></Set>
91
- <Set name="blockingTimeout"><Property name="jetty.httpConfig.blockingTimeout" default="-1"/></Set>
92
- <Set name="persistentConnectionsEnabled"><Property name="jetty.httpConfig.persistentConnectionsEnabled" default="true"/></Set>
93
- </New>
94
-
95
- <!-- =========================================================== -->
96
- <!-- Set the default handler structure for the Server -->
97
- <!-- A handler collection is used to pass received requests to -->
98
- <!-- both the ContextHandlerCollection, which selects the next -->
99
- <!-- handler by context path and virtual host, and the -->
100
- <!-- DefaultHandler, which handles any requests not handled by -->
101
- <!-- the context handlers. -->
102
- <!-- Other handlers may be added to the "Handlers" collection, -->
103
- <!-- for example the jetty-requestlog.xml file adds the -->
104
- <!-- RequestLogHandler after the default handler -->
105
- <!-- =========================================================== -->
106
- <Set name="handler">
107
- <New id="Handlers" class="org.eclipse.jetty.server.handler.HandlerCollection">
108
- <Set name="handlers">
109
- <Array type="org.eclipse.jetty.server.Handler">
110
- <Item>
111
- <New id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection"/>
112
- </Item>
113
- <Item>
114
- <New id="DefaultHandler" class="org.eclipse.jetty.server.handler.DefaultHandler"/>
115
- </Item>
116
- </Array>
117
- </Set>
118
- </New>
119
- </Set>
120
-
121
- <Set name="handler">
122
- <New id="Handlers" class="org.eclipse.jetty.server.handler.HandlerCollection">
123
- <Set name="handlers">
124
- <Array type="org.eclipse.jetty.server.Handler">
125
- <Item>
126
- <New id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection"/>
127
- </Item>
128
- <Item>
129
- <New id="DefaultHandler" class="org.eclipse.jetty.server.handler.DefaultHandler"/>
130
- </Item>
131
- <Item>
132
- <New id="RequestLog" class="org.eclipse.jetty.server.handler.RequestLogHandler"/>
133
- </Item>
134
- </Array>
135
- </Set>
136
- </New>
137
- </Set>
138
-
139
-
140
- <!-- =========================================================== -->
141
- <!-- configure rewrite handler -->
142
- <!-- =========================================================== -->
143
- <Call name="insertHandler">
144
- <Arg>
145
- <New class="org.eclipse.jetty.rewrite.handler.RewriteHandler">
146
- <Set name="rewriteRequestURI"><Property name="jetty.rewrite.rewriteRequestURI" deprecated="rewrite.rewriteRequestURI" default="true"/></Set>
147
- <Set name="rewritePathInfo"><Property name="jetty.rewrite.rewritePathInfo" deprecated="rewrite.rewritePathInfo" default="false"/></Set>
148
- <Set name="originalPathAttribute"><Property name="jetty.rewrite.originalPathAttribute" deprecated="rewrite.originalPathAttribute" default="requestedPath"/></Set>
149
-
150
- <!-- Set DispatcherTypes -->
151
- <Set name="dispatcherTypes">
152
- <Array type="javax.servlet.DispatcherType">
153
- <Item><Call class="javax.servlet.DispatcherType" name="valueOf"><Arg>REQUEST</Arg></Call></Item>
154
- <Item><Call class="javax.servlet.DispatcherType" name="valueOf"><Arg>ASYNC</Arg></Call></Item>
155
- </Array>
156
- </Set>
157
-
158
- <Get id="Rewrite" name="ruleContainer"/>
159
-
160
- <!-- see rewrite-compactpath.xml for example how to add a rule -->
161
- <Call name="addRule">
162
- <Arg>
163
- <New class="org.eclipse.jetty.rewrite.handler.RewritePatternRule">
164
- <Set name="pattern">/websocket/*</Set>
165
- <Set name="replacement">/BlueBox/websocket/</Set>
166
- </New>
167
- </Arg>
168
- </Call>
169
-
170
- </New>
171
- </Arg>
172
- </Call>
173
-
174
-
175
- <Ref refid="RequestLog">
176
- <Set name="requestLog">
177
- <New id="RequestLogImpl" class="org.eclipse.jetty.server.NCSARequestLog">
178
- <Arg><SystemProperty name="jetty.logs" default="logs/http/"/>/yyyy_mm_dd.request.log</Arg>
179
- <Set name="retainDays">90</Set>
180
- <Set name="append">true</Set>
181
- <Set name="extended">false</Set>
182
- <Set name="LogTimeZone">GMT</Set>
183
- </New>
184
- </Set>
185
- </Ref>
186
-
187
- <!-- =========================================================== -->
188
- <!-- extra server options -->
189
- <!-- =========================================================== -->
190
- <Set name="stopAtShutdown"><Property name="jetty.server.stopAtShutdown" default="true"/></Set>
191
- <Set name="stopTimeout">5000</Set>
192
- <Set name="dumpAfterStart"><Property name="jetty.server.dumpAfterStart" deprecated="jetty.dump.start" default="false"/></Set>
193
- <Set name="dumpBeforeStop"><Property name="jetty.server.dumpBeforeStop" deprecated="jetty.dump.stop" default="false"/></Set>
194
-
195
- </Configure>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
5
- <Call name="addBean">
6
- <Arg>
7
- <New class="org.jminix.console.tool.StandaloneMiniConsole">
8
- <Arg type="int"><Property name="jminix.port" default="8088" /></Arg>
9
- </New>
10
- </Arg>
11
- </Call>
12
- </Configure>
@@ -1,16 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <Configure id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection">
5
- <Call name="addHandler">
6
- <Arg>
7
- <New class="org.eclipse.jetty.webapp.WebAppContext">
8
- <Set name="contextPath">/jolokia</Set>
9
- <Set name="war"><Property name="jetty.base" default="."/>/lib/jolokia/jolokia.war</Set>
10
- <Set name="extractWAR">true</Set>
11
- <Set name="copyWebDir">false</Set>
12
- <Set name="defaultsDescriptor"><Property name="jetty.home" default="."/>/etc/webdefault.xml</Set>
13
- </New>
14
- </Arg>
15
- </Call>
16
- </Configure>
@@ -1,23 +0,0 @@
1
- [libdefaults]
2
- default_realm = MORTBAY.ORG
3
- default_keytab_name = FILE:/path/to/jetty/etc/krb5.keytab
4
- permitted_enctypes = aes128-cts aes256-cts arcfour-hmac-md5
5
- default_tgs_enctypes = aes128-cts aes256-cts arcfour-hmac-md5
6
- default_tkt_enctypes = aes128-cts aes256-cts arcfour-hmac-md5
7
-
8
-
9
-
10
- [realms]
11
- MORTBAY.ORG = {
12
- kdc = 192.168.2.30
13
- admin_server = 192.168.2.30
14
- default_domain = MORTBAY.ORG
15
- }
16
-
17
- [domain_realm]
18
- mortbay.org= MORTBAY.ORG
19
- .mortbay.org = MORTBAY.ORG
20
-
21
- [appdefaults]
22
- autologin = true
23
- forwardable = true
@@ -1,10 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
- <Configure id="Rewrite" class="org.eclipse.jetty.rewrite.handler.RuleContainer">
4
- <Call name="addRule">
5
- <Arg>
6
- <New class="org.eclipse.jetty.rewrite.handler.CompactPathRule"/>
7
- </Arg>
8
- </Call>
9
- </Configure>
10
-
@@ -1,19 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
5
-
6
- <!-- ===================================================================== -->
7
- <!-- Configure a SessionIdManager with the Hazelcast IdManager. -->
8
- <!-- ===================================================================== -->
9
- <Set name="sessionIdManager">
10
- <New id="hazelcastIdMgr" class="com.hazelcast.session.HazelcastSessionIdManager">
11
- <Arg>
12
- <Ref refid="Server"/>
13
- </Arg>
14
- <Set name="configLocation"><Property name="jetty.session.hazelcast.configurationLocation"/></Set>
15
- <Set name="clientOnly">false</Set>
16
- </New>
17
- </Set>
18
-
19
- </Configure>
@@ -1,19 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3
-
4
- <Configure id="Server" class="org.eclipse.jetty.server.Server">
5
-
6
- <!-- ===================================================================== -->
7
- <!-- Configure a SessionIdManager with the Hazelcast IdManager. -->
8
- <!-- ===================================================================== -->
9
- <Set name="sessionIdManager">
10
- <New id="hazelcastIdMgr" class="com.hazelcast.session.HazelcastSessionIdManager">
11
- <Arg>
12
- <Ref refid="Server"/>
13
- </Arg>
14
- <Set name="configLocation"><Property name="jetty.session.hazelcast.configurationLocation"/></Set>
15
- <Set name="clientOnly">true</Set>
16
- </New>
17
- </Set>
18
-
19
- </Configure>
@@ -1,19 +0,0 @@
1
- com.sun.security.jgss.initiate {
2
- com.sun.security.auth.module.Krb5LoginModule required
3
- principal="HTTP/vm.mortbay.org@MORTBAY.ORG"
4
- keyTab="/path/to/jetty/etc/krb5.keytab"
5
- useKeyTab=true
6
- storeKey=true
7
- debug=true
8
- isInitiator=false;
9
- };
10
-
11
- com.sun.security.jgss.accept {
12
- com.sun.security.auth.module.Krb5LoginModule required
13
- principal="HTTP/vm.mortbay.org@MORTBAY.ORG"
14
- useKeyTab=true
15
- keyTab="/path/to/jetty/etc/krb5.keytab"
16
- storeKey=true
17
- debug=true
18
- isInitiator=false;
19
- };
@@ -1 +0,0 @@
1
- targetName = HTTP/vm.mortbay.org
@@ -1,539 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <web-app
3
- xmlns="http://xmlns.jcp.org/xml/ns/javaee"
4
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
- xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
6
- metadata-complete="false"
7
- version="3.1">
8
-
9
- <!-- ===================================================================== -->
10
- <!-- This file contains the default descriptor for web applications. -->
11
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
12
- <!-- The intent of this descriptor is to include jetty specific or common -->
13
- <!-- configuration for all webapps. If a context has a webdefault.xml -->
14
- <!-- descriptor, it is applied before the context's own web.xml file -->
15
- <!-- -->
16
- <!-- A context may be assigned a default descriptor by calling -->
17
- <!-- WebAppContext.setDefaultsDescriptor(String). -->
18
- <!-- -->
19
- <!-- This file is present in the jetty-webapp.jar, and is used as the -->
20
- <!-- defaults descriptor if no other is explicitly set on a context. -->
21
- <!-- -->
22
- <!-- A copy of this file is also placed into the $JETTY_HOME/etc dir of -->
23
- <!-- the distribution, and is referenced by some of the other xml files, -->
24
- <!-- eg the jetty-deploy.xml file. -->
25
- <!-- ===================================================================== -->
26
-
27
- <description>
28
- Default web.xml file.
29
- This file is applied to a Web application before it's own WEB_INF/web.xml file
30
- </description>
31
-
32
- <!-- ==================================================================== -->
33
- <!-- Removes static references to beans from javax.el.BeanELResolver to -->
34
- <!-- ensure webapp classloader can be released on undeploy -->
35
- <!-- ==================================================================== -->
36
- <listener>
37
- <listener-class>org.eclipse.jetty.servlet.listener.ELContextCleaner</listener-class>
38
- </listener>
39
-
40
- <!-- ==================================================================== -->
41
- <!-- Removes static cache of Methods from java.beans.Introspector to -->
42
- <!-- ensure webapp classloader can be released on undeploy -->
43
- <!-- ==================================================================== -->
44
- <listener>
45
- <listener-class>org.eclipse.jetty.servlet.listener.IntrospectorCleaner</listener-class>
46
- </listener>
47
-
48
-
49
- <!-- ==================================================================== -->
50
- <!-- Context params to control Session Cookies -->
51
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52
- <!--
53
- UNCOMMENT TO ACTIVATE
54
- <context-param>
55
- <param-name>org.eclipse.jetty.servlet.SessionDomain</param-name>
56
- <param-value>127.0.0.1</param-value>
57
- </context-param>
58
- <context-param>
59
- <param-name>org.eclipse.jetty.servlet.SessionPath</param-name>
60
- <param-value>/</param-value>
61
- </context-param>
62
- <context-param>
63
- <param-name>org.eclipse.jetty.servlet.MaxAge</param-name>
64
- <param-value>-1</param-value>
65
- </context-param>
66
- -->
67
-
68
- <context-param>
69
- <param-name>org.eclipse.jetty.servlet.Default.dirAllowed</param-name>
70
- <param-value>false</param-value>
71
- </context-param>
72
-
73
- <!-- ==================================================================== -->
74
- <!-- The default servlet. -->
75
- <!-- This servlet, normally mapped to /, provides the handling for static -->
76
- <!-- content, OPTIONS and TRACE methods for the context. -->
77
- <!-- The following initParameters are supported: -->
78
- <!--
79
- * acceptRanges If true, range requests and responses are
80
- * supported
81
- *
82
- * dirAllowed If true, directory listings are returned if no
83
- * welcome file is found. Else 403 Forbidden.
84
- *
85
- * welcomeServlets If true, attempt to dispatch to welcome files
86
- * that are servlets, but only after no matching static
87
- * resources could be found. If false, then a welcome
88
- * file must exist on disk. If "exact", then exact
89
- * servlet matches are supported without an existing file.
90
- * Default is true.
91
- *
92
- * This must be false if you want directory listings,
93
- * but have index.jsp in your welcome file list.
94
- *
95
- * redirectWelcome If true, welcome files are redirected rather than
96
- * forwarded to.
97
- *
98
- * gzip If set to true, then static content will be served as
99
- * gzip content encoded if a matching resource is
100
- * found ending with ".gz"
101
- *
102
- * resourceBase Set to replace the context resource base
103
- *
104
- * resourceCache If set, this is a context attribute name, which the servlet
105
- * will use to look for a shared ResourceCache instance.
106
- *
107
- * relativeResourceBase
108
- * Set with a pathname relative to the base of the
109
- * servlet context root. Useful for only serving static content out
110
- * of only specific subdirectories.
111
- *
112
- * pathInfoOnly If true, only the path info will be applied to the resourceBase
113
- *
114
- * stylesheet Set with the location of an optional stylesheet that will be used
115
- * to decorate the directory listing html.
116
- *
117
- * aliases If True, aliases of resources are allowed (eg. symbolic
118
- * links and caps variations). May bypass security constraints.
119
- *
120
- * etags If True, weak etags will be generated and handled.
121
- *
122
- * maxCacheSize The maximum total size of the cache or 0 for no cache.
123
- * maxCachedFileSize The maximum size of a file to cache
124
- * maxCachedFiles The maximum number of files to cache
125
- *
126
- * useFileMappedBuffer
127
- * If set to true, it will use mapped file buffers to serve static content
128
- * when using an NIO connector. Setting this value to false means that
129
- * a direct buffer will be used instead of a mapped file buffer.
130
- * This file sets the value to true.
131
- *
132
- * cacheControl If set, all static content will have this value set as the cache-control
133
- * header.
134
- *
135
- -->
136
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
137
- <servlet>
138
- <servlet-name>default</servlet-name>
139
- <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
140
- <init-param>
141
- <param-name>aliases</param-name>
142
- <param-value>false</param-value>
143
- </init-param>
144
- <init-param>
145
- <param-name>acceptRanges</param-name>
146
- <param-value>true</param-value>
147
- </init-param>
148
- <init-param>
149
- <param-name>dirAllowed</param-name>
150
- <param-value>true</param-value>
151
- </init-param>
152
- <init-param>
153
- <param-name>welcomeServlets</param-name>
154
- <param-value>false</param-value>
155
- </init-param>
156
- <init-param>
157
- <param-name>redirectWelcome</param-name>
158
- <param-value>false</param-value>
159
- </init-param>
160
- <init-param>
161
- <param-name>maxCacheSize</param-name>
162
- <param-value>256000000</param-value>
163
- </init-param>
164
- <init-param>
165
- <param-name>maxCachedFileSize</param-name>
166
- <param-value>200000000</param-value>
167
- </init-param>
168
- <init-param>
169
- <param-name>maxCachedFiles</param-name>
170
- <param-value>2048</param-value>
171
- </init-param>
172
- <init-param>
173
- <param-name>gzip</param-name>
174
- <param-value>false</param-value>
175
- </init-param>
176
- <init-param>
177
- <param-name>etags</param-name>
178
- <param-value>false</param-value>
179
- </init-param>
180
- <init-param>
181
- <param-name>useFileMappedBuffer</param-name>
182
- <param-value>true</param-value>
183
- </init-param>
184
- <!--
185
- <init-param>
186
- <param-name>resourceCache</param-name>
187
- <param-value>resourceCache</param-value>
188
- </init-param>
189
- -->
190
- <!--
191
- <init-param>
192
- <param-name>cacheControl</param-name>
193
- <param-value>max-age=3600,public</param-value>
194
- </init-param>
195
- -->
196
- <load-on-startup>0</load-on-startup>
197
- </servlet>
198
-
199
- <servlet-mapping>
200
- <servlet-name>default</servlet-name>
201
- <url-pattern>/</url-pattern>
202
- </servlet-mapping>
203
-
204
-
205
- <!-- ==================================================================== -->
206
- <!-- JSP Servlet -->
207
- <!-- This is the jasper JSP servlet. -->
208
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
209
- <!-- The JSP page compiler and execution servlet, which is the mechanism -->
210
- <!-- used by the jsp container to support JSP pages. Traditionally, -->
211
- <!-- this servlet is mapped to URL pattern "*.jsp". This servlet -->
212
- <!-- supports the following initialization parameters (default values -->
213
- <!-- are in square brackets): -->
214
- <!-- -->
215
- <!-- checkInterval If development is false and reloading is true, -->
216
- <!-- background compiles are enabled. checkInterval -->
217
- <!-- is the time in seconds between checks to see -->
218
- <!-- if a JSP page needs to be recompiled. [300] -->
219
- <!-- -->
220
- <!-- compiler Which compiler Ant should use to compile JSP -->
221
- <!-- pages. See the Ant documentation for more -->
222
- <!-- information. [javac] -->
223
- <!-- -->
224
- <!-- classdebuginfo Should the class file be compiled with -->
225
- <!-- debugging information? [true] -->
226
- <!-- -->
227
- <!-- classpath What class path should I use while compiling -->
228
- <!-- generated servlets? [Created dynamically -->
229
- <!-- based on the current web application] -->
230
- <!-- Set to ? to make the container explicitly set -->
231
- <!-- this parameter. -->
232
- <!-- -->
233
- <!-- development Is Jasper used in development mode (will check -->
234
- <!-- for JSP modification on every access)? [true] -->
235
- <!-- -->
236
- <!-- enablePooling Determines whether tag handler pooling is -->
237
- <!-- enabled [true] -->
238
- <!-- -->
239
- <!-- fork Tell Ant to fork compiles of JSP pages so that -->
240
- <!-- a separate JVM is used for JSP page compiles -->
241
- <!-- from the one Tomcat is running in. [true] -->
242
- <!-- -->
243
- <!-- ieClassId The class-id value to be sent to Internet -->
244
- <!-- Explorer when using <jsp:plugin> tags. -->
245
- <!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] -->
246
- <!-- -->
247
- <!-- javaEncoding Java file encoding to use for generating java -->
248
- <!-- source files. [UTF-8] -->
249
- <!-- -->
250
- <!-- keepgenerated Should we keep the generated Java source code -->
251
- <!-- for each page instead of deleting it? [true] -->
252
- <!-- -->
253
- <!-- logVerbosityLevel The level of detailed messages to be produced -->
254
- <!-- by this servlet. Increasing levels cause the -->
255
- <!-- generation of more messages. Valid values are -->
256
- <!-- FATAL, ERROR, WARNING, INFORMATION, and DEBUG. -->
257
- <!-- [WARNING] -->
258
- <!-- -->
259
- <!-- mappedfile Should we generate static content with one -->
260
- <!-- print statement per input line, to ease -->
261
- <!-- debugging? [false] -->
262
- <!-- -->
263
- <!-- -->
264
- <!-- reloading Should Jasper check for modified JSPs? [true] -->
265
- <!-- -->
266
- <!-- suppressSmap Should the generation of SMAP info for JSR45 -->
267
- <!-- debugging be suppressed? [false] -->
268
- <!-- -->
269
- <!-- dumpSmap Should the SMAP info for JSR45 debugging be -->
270
- <!-- dumped to a file? [false] -->
271
- <!-- False if suppressSmap is true -->
272
- <!-- -->
273
- <!-- scratchdir What scratch directory should we use when -->
274
- <!-- compiling JSP pages? [default work directory -->
275
- <!-- for the current web application] -->
276
- <!-- -->
277
- <!-- tagpoolMaxSize The maximum tag handler pool size [5] -->
278
- <!-- -->
279
- <!-- xpoweredBy Determines whether X-Powered-By response -->
280
- <!-- header is added by generated servlet [false] -->
281
- <!-- -->
282
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
283
- <servlet id="jsp">
284
- <servlet-name>jsp</servlet-name>
285
- <servlet-class>org.eclipse.jetty.jsp.JettyJspServlet</servlet-class>
286
- <init-param>
287
- <param-name>logVerbosityLevel</param-name>
288
- <param-value>DEBUG</param-value>
289
- </init-param>
290
- <init-param>
291
- <param-name>fork</param-name>
292
- <param-value>false</param-value>
293
- </init-param>
294
- <init-param>
295
- <param-name>xpoweredBy</param-name>
296
- <param-value>false</param-value>
297
- </init-param>
298
- <init-param>
299
- <param-name>compilerTargetVM</param-name>
300
- <param-value>1.7</param-value>
301
- </init-param>
302
- <init-param>
303
- <param-name>compilerSourceVM</param-name>
304
- <param-value>1.7</param-value>
305
- </init-param>
306
- <!--
307
- <init-param>
308
- <param-name>classpath</param-name>
309
- <param-value>?</param-value>
310
- </init-param>
311
- -->
312
- <load-on-startup>0</load-on-startup>
313
- </servlet>
314
-
315
- <servlet-mapping>
316
- <servlet-name>jsp</servlet-name>
317
- <url-pattern>*.jsp</url-pattern>
318
- <url-pattern>*.jspf</url-pattern>
319
- <url-pattern>*.jspx</url-pattern>
320
- <url-pattern>*.xsp</url-pattern>
321
- <url-pattern>*.JSP</url-pattern>
322
- <url-pattern>*.JSPF</url-pattern>
323
- <url-pattern>*.JSPX</url-pattern>
324
- <url-pattern>*.XSP</url-pattern>
325
- </servlet-mapping>
326
-
327
-
328
- <!-- ==================================================================== -->
329
- <!-- Default session configuration -->
330
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
331
- <session-config>
332
- <session-timeout>30</session-timeout>
333
- </session-config>
334
-
335
- <!-- ==================================================================== -->
336
- <!-- Default MIME mappings -->
337
- <!-- The default MIME mappings are provided by the mime.properties -->
338
- <!-- resource in the jetty-http.jar file. Additional or modified -->
339
- <!-- mappings may be specified here -->
340
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
341
- <!-- UNCOMMENT TO ACTIVATE
342
- <mime-mapping>
343
- <extension>mysuffix</extension>
344
- <mime-type>mymime/type</mime-type>
345
- </mime-mapping>
346
- -->
347
-
348
- <!-- ==================================================================== -->
349
- <!-- Default welcome files -->
350
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
351
- <welcome-file-list>
352
- <welcome-file>index.html</welcome-file>
353
- <welcome-file>index.htm</welcome-file>
354
- <welcome-file>index.jsp</welcome-file>
355
- </welcome-file-list>
356
-
357
- <!-- ==================================================================== -->
358
- <!-- Default locale encodings -->
359
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
360
- <locale-encoding-mapping-list>
361
- <locale-encoding-mapping>
362
- <locale>ar</locale>
363
- <encoding>ISO-8859-6</encoding>
364
- </locale-encoding-mapping>
365
- <locale-encoding-mapping>
366
- <locale>be</locale>
367
- <encoding>ISO-8859-5</encoding>
368
- </locale-encoding-mapping>
369
- <locale-encoding-mapping>
370
- <locale>bg</locale>
371
- <encoding>ISO-8859-5</encoding>
372
- </locale-encoding-mapping>
373
- <locale-encoding-mapping>
374
- <locale>ca</locale>
375
- <encoding>ISO-8859-1</encoding>
376
- </locale-encoding-mapping>
377
- <locale-encoding-mapping>
378
- <locale>cs</locale>
379
- <encoding>ISO-8859-2</encoding>
380
- </locale-encoding-mapping>
381
- <locale-encoding-mapping>
382
- <locale>da</locale>
383
- <encoding>ISO-8859-1</encoding>
384
- </locale-encoding-mapping>
385
- <locale-encoding-mapping>
386
- <locale>de</locale>
387
- <encoding>ISO-8859-1</encoding>
388
- </locale-encoding-mapping>
389
- <locale-encoding-mapping>
390
- <locale>el</locale>
391
- <encoding>ISO-8859-7</encoding>
392
- </locale-encoding-mapping>
393
- <locale-encoding-mapping>
394
- <locale>en</locale>
395
- <encoding>ISO-8859-1</encoding>
396
- </locale-encoding-mapping>
397
- <locale-encoding-mapping>
398
- <locale>es</locale>
399
- <encoding>ISO-8859-1</encoding>
400
- </locale-encoding-mapping>
401
- <locale-encoding-mapping>
402
- <locale>et</locale>
403
- <encoding>ISO-8859-1</encoding>
404
- </locale-encoding-mapping>
405
- <locale-encoding-mapping>
406
- <locale>fi</locale>
407
- <encoding>ISO-8859-1</encoding>
408
- </locale-encoding-mapping>
409
- <locale-encoding-mapping>
410
- <locale>fr</locale>
411
- <encoding>ISO-8859-1</encoding>
412
- </locale-encoding-mapping>
413
- <locale-encoding-mapping>
414
- <locale>hr</locale>
415
- <encoding>ISO-8859-2</encoding>
416
- </locale-encoding-mapping>
417
- <locale-encoding-mapping>
418
- <locale>hu</locale>
419
- <encoding>ISO-8859-2</encoding>
420
- </locale-encoding-mapping>
421
- <locale-encoding-mapping>
422
- <locale>is</locale>
423
- <encoding>ISO-8859-1</encoding>
424
- </locale-encoding-mapping>
425
- <locale-encoding-mapping>
426
- <locale>it</locale>
427
- <encoding>ISO-8859-1</encoding>
428
- </locale-encoding-mapping>
429
- <locale-encoding-mapping>
430
- <locale>iw</locale>
431
- <encoding>ISO-8859-8</encoding>
432
- </locale-encoding-mapping>
433
- <locale-encoding-mapping>
434
- <locale>ja</locale>
435
- <encoding>Shift_JIS</encoding>
436
- </locale-encoding-mapping>
437
- <locale-encoding-mapping>
438
- <locale>ko</locale>
439
- <encoding>EUC-KR</encoding>
440
- </locale-encoding-mapping>
441
- <locale-encoding-mapping>
442
- <locale>lt</locale>
443
- <encoding>ISO-8859-2</encoding>
444
- </locale-encoding-mapping>
445
- <locale-encoding-mapping>
446
- <locale>lv</locale>
447
- <encoding>ISO-8859-2</encoding>
448
- </locale-encoding-mapping>
449
- <locale-encoding-mapping>
450
- <locale>mk</locale>
451
- <encoding>ISO-8859-5</encoding>
452
- </locale-encoding-mapping>
453
- <locale-encoding-mapping>
454
- <locale>nl</locale>
455
- <encoding>ISO-8859-1</encoding>
456
- </locale-encoding-mapping>
457
- <locale-encoding-mapping>
458
- <locale>no</locale>
459
- <encoding>ISO-8859-1</encoding>
460
- </locale-encoding-mapping>
461
- <locale-encoding-mapping>
462
- <locale>pl</locale>
463
- <encoding>ISO-8859-2</encoding>
464
- </locale-encoding-mapping>
465
- <locale-encoding-mapping>
466
- <locale>pt</locale>
467
- <encoding>ISO-8859-1</encoding>
468
- </locale-encoding-mapping>
469
- <locale-encoding-mapping>
470
- <locale>ro</locale>
471
- <encoding>ISO-8859-2</encoding>
472
- </locale-encoding-mapping>
473
- <locale-encoding-mapping>
474
- <locale>ru</locale>
475
- <encoding>ISO-8859-5</encoding>
476
- </locale-encoding-mapping>
477
- <locale-encoding-mapping>
478
- <locale>sh</locale>
479
- <encoding>ISO-8859-5</encoding>
480
- </locale-encoding-mapping>
481
- <locale-encoding-mapping>
482
- <locale>sk</locale>
483
- <encoding>ISO-8859-2</encoding>
484
- </locale-encoding-mapping>
485
- <locale-encoding-mapping>
486
- <locale>sl</locale>
487
- <encoding>ISO-8859-2</encoding>
488
- </locale-encoding-mapping>
489
- <locale-encoding-mapping>
490
- <locale>sq</locale>
491
- <encoding>ISO-8859-2</encoding>
492
- </locale-encoding-mapping>
493
- <locale-encoding-mapping>
494
- <locale>sr</locale>
495
- <encoding>ISO-8859-5</encoding>
496
- </locale-encoding-mapping>
497
- <locale-encoding-mapping>
498
- <locale>sv</locale>
499
- <encoding>ISO-8859-1</encoding>
500
- </locale-encoding-mapping>
501
- <locale-encoding-mapping>
502
- <locale>tr</locale>
503
- <encoding>ISO-8859-9</encoding>
504
- </locale-encoding-mapping>
505
- <locale-encoding-mapping>
506
- <locale>uk</locale>
507
- <encoding>ISO-8859-5</encoding>
508
- </locale-encoding-mapping>
509
- <locale-encoding-mapping>
510
- <locale>zh</locale>
511
- <encoding>GB2312</encoding>
512
- </locale-encoding-mapping>
513
- <locale-encoding-mapping>
514
- <locale>zh_TW</locale>
515
- <encoding>Big5</encoding>
516
- </locale-encoding-mapping>
517
- </locale-encoding-mapping-list>
518
-
519
- <!-- ==================================================================== -->
520
- <!-- Disable TRACE method with security constraint -->
521
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
522
- <security-constraint>
523
- <web-resource-collection>
524
- <web-resource-name>Disable TRACE</web-resource-name>
525
- <url-pattern>/</url-pattern>
526
- <http-method>TRACE</http-method>
527
- </web-resource-collection>
528
- <auth-constraint/>
529
- </security-constraint>
530
- <security-constraint>
531
- <web-resource-collection>
532
- <web-resource-name>Enable everything but TRACE</web-resource-name>
533
- <url-pattern>/</url-pattern>
534
- <http-method-omission>TRACE</http-method-omission>
535
- </web-resource-collection>
536
- </security-constraint>
537
-
538
- </web-app>
539
-