File: start.ini

package info (click to toggle)
jetty12 12.0.32-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 87,736 kB
  • sloc: java: 734,480; xml: 58,950; javascript: 1,041; sh: 874; jsp: 391; sql: 40; makefile: 9
file content (62 lines) | stat: -rw-r--r-- 1,358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#------------------------------------------------------------------------------
#
# Jetty Startup Configuration
#
# This file contains the default settings for Jetty and configures a basic
# Servlet container with JSP and WebSocket enabled. Customized settings can
# be added to .ini files in the /etc/jetty12/start.d directory to avoid
# conflicts when updating the package.
#
#------------------------------------------------------------------------------

--module=server
--module=http
--module=ext
--module=resources
--module=console-capture

--module=ee8-deploy
--module=ee8-servlet
--module=ee8-jsp
--module=ee8-jstl
--module=ee8-websocket-javax

--module=ee9-deploy
--module=ee9-servlet
--module=ee9-jsp
--module=ee9-jstl
--module=ee9-websocket-jakarta

--module=ee10-deploy
--module=ee10-servlet
--module=ee10-jsp
--module=ee10-jstl
--module=ee10-websocket-jakarta


##
## HTTP Connector Configuration
##

# What host to listen on (leave commented to listen on all interfaces)
#jetty.host=myhost.com

# HTTP port to listen on
jetty.http.port=8080

# HTTP idle timeout in milliseconds
jetty.http.idleTimeout=30000


##
## Server Threading Configuration
##

# minimum number of threads
jetty.threadPool.minThreads=10

# maximum number of threads
jetty.threadPool.maxThreads=200

# thread idle timeout in milliseconds
jetty.threadPool.idleTimeout=60000