File: start.ini

package info (click to toggle)
jetty9 9.4.58-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,128 kB
  • sloc: java: 442,608; xml: 25,460; javascript: 1,039; sh: 912; jsp: 268; sql: 40; makefile: 16
file content (40 lines) | stat: -rw-r--r-- 1,067 bytes parent folder | download | duplicates (4)
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
#------------------------------------------------------------------------------
#
# 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/jetty9/start.d directory to avoid
# conflicts when updating the package.
#
#------------------------------------------------------------------------------

--module=deploy,http,jsp,jstl,websocket,ext,resources

##
## HTTP Connector Configuration
##

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

# HTTP port to listen on
# Enable authbind in /etc/default/jetty9 to use a port lower than 1024
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