2016-11-12 04:23:44 +08:00
|
|
|
jetty (web server)
|
2013-07-06 22:23:50 +08:00
|
|
|
|
2016-11-12 04:23:44 +08:00
|
|
|
Jetty provides a Web server and javax.servlet container, plus support
|
|
|
|
for SPDY, WebSocket, OSGi, JMX, JNDI, JAAS and many other integrations.
|
|
|
|
These components are open source and available for commercial use and
|
|
|
|
distribution.
|
|
|
|
|
|
|
|
Jetty is used in a wide variety of projects and products, both in
|
|
|
|
Jetty development and production. can be easily embedded in devices,
|
|
|
|
Jetty tools, frameworks, application servers, and clusters.
|
2013-07-06 22:23:50 +08:00
|
|
|
|
2014-10-05 09:01:01 +08:00
|
|
|
This script repacks the tar.gz into a slackware package.
|
|
|
|
It also links the startup script to /etc/rc.d/rc.jetty.
|
2013-07-06 22:23:50 +08:00
|
|
|
|
2014-10-05 09:01:01 +08:00
|
|
|
## Startup
|
2016-11-12 04:23:44 +08:00
|
|
|
To have this start upon each boot, add the following lines to
|
|
|
|
/etc/rc.d/rc.local:
|
2013-07-06 22:23:50 +08:00
|
|
|
|
2014-10-05 09:01:01 +08:00
|
|
|
# Start jetty
|
|
|
|
if [ -x /etc/rc.d/rc.jetty ]; then
|
|
|
|
/etc/rc.d/rc.jetty start
|
|
|
|
fi
|