This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository jetty9.
commit 3ad926ce23839966d9605b648ed2137488e647a2 Author: Emmanuel Bourg <[email protected]> Date: Thu Dec 3 22:54:24 2015 +0100 Added a default startup configuration --- debian/jetty9.install | 2 +- debian/start.ini | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/debian/jetty9.install b/debian/jetty9.install index 721c2f6..84bbecf 100644 --- a/debian/jetty9.install +++ b/debian/jetty9.install @@ -17,9 +17,9 @@ jetty-spring/src/main/config/etc/* etc/jetty9 jetty-util/src/main/config/etc/* etc/jetty9 jetty-webapp/src/main/config/etc/* etc/jetty9 +debian/start.ini etc/jetty9 debian/root-webapp/* usr/share/jetty9/default-root tests/test-webapps/test-jetty-webapp/src/main/webapp/jetty_banner.gif usr/share/jetty9/default-root -jetty-distribution/src/main/resources/start.ini etc/jetty9 jetty-distribution/src/main/resources/resources usr/share/jetty9 debian/README.Debian usr/share/doc/jetty9 diff --git a/debian/start.ini b/debian/start.ini new file mode 100644 index 0000000..66c6bb6 --- /dev/null +++ b/debian/start.ini @@ -0,0 +1,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.port=8080 + +# HTTP idle timeout in milliseconds +http.timeout=30000 + + +## +## Server Threading Configuration +## + +# minimum number of threads +threads.min=10 + +# maximum number of threads +threads.max=200 + +# thread idle timeout in milliseconds +threads.timeout=60000 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jetty9.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

