Questions tagged [jetty]

Jetty is a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.

Jetty is a widely used java based http server and servlet engine with additional support for WebSockets and SPDY protocols.

Current versions are:

163 questions
5
votes
5 answers

Why is solr admin panel not showing?

I have downloaded solr from here and untar'd it. Then went to the example directory in apache-solr-3.1.0/solr/example and ran this command java -jar start.jar But when I open http://localhost:8983/solr/admin/ it shows like this HTTP ERROR: 404…
Rahul Mehta
  • 999
  • 3
  • 11
  • 13
4
votes
2 answers

Jetty: How to redirect base url?

Scenario: I'm using a jetty server. I have a webapp running on: myip/myWebApp Question: How to redirect base url to base url/something ie. http://190.23.30.1/ --> http://190.23.30.1/mywebapp So when a user hits http://190.23.30.1/ my server will…
Mrshll187
  • 221
  • 2
  • 4
  • 9
4
votes
1 answer

Jetty Service on Windows Server 2008 using Procrun: Missing service ImageFile

Xe want to run Jetty as a service on a Windows 2008 Server Virtual Machine. Therefore, I configured Jetty as a Windows Service using Apacke Procrun, following this short description:…
Christian
  • 41
  • 1
  • 3
4
votes
1 answer

"Keep-Alive" response header for Jetty Web server

How to enable "Keep-Alive" response header for Jetty Web server? Jetty web server - version 7
Mak Killbers
  • 143
  • 1
  • 3
4
votes
1 answer

Configuring a Jetty web application on a different port

I'm brand new to Jetty. I'd like to ask if its possible to have Jetty listening on port 8080, however where specified, serve a specific web application under say /var/jetty/webapps/ (default on CentOS) served on say port 10000 instead of…
shaond
  • 141
  • 5
3
votes
0 answers

Bad Gateway error after upgrading back-end from Jetty 8 to 9

Update: this seems to be due to an Apache bug: https://bz.apache.org/bugzilla/show_bug.cgi?id=60330 I have a Java application that runs Jetty 8 as an embedded HTTP server. This is a back-end service, running on port 20000. The code of my actual…
3
votes
0 answers

Creating SSL certificate signed by a self-signed CA certificate in Jetty

I'm trying to configure a jetty-distribution-9.3.1.v20150714 backend running on Java 1.8.0_45-b14 with a certificate signed by a self-signed CA certificate, for SSL pinning. Following Apple's guide, I created a self signed CA certificate, then…
3
votes
2 answers

Redirecting nginx to another internal port not working

I have an nginx instance running on port 80 and another app (embedded jetty) running on the same machine on port 4567. I'm trying to redirect any request that includes /api/ in the URL, to the server running on port 4567. For this, I've added the…
Henrique
  • 153
  • 1
  • 5
3
votes
1 answer

Jetty 9 support for TLS_FALLBACK_SCSV

I've been trying to get that A+ on the SSL Server Test @ SSL Labs. However, I can't figure out how to pass the "downgrade attack prevention" test: I'm running Jetty 9.3.0.v20150612 alongside OpenJDK 8, on Linux Ubuntu 15.04 (Vivid…
Hristo
  • 131
  • 6
3
votes
1 answer

https to http reverse proxy on Jetty 9

Okay, so basically what I want to do is set up a reverse proxy to serve https pages on nginx and redirect them to Jetty using http. The problem is that the servlet actually requires https and redirects to https address once it sees that it was sent…
Kęstutis
  • 533
  • 1
  • 6
  • 16
3
votes
1 answer

archiva/jetty with nginx ssl proxy: getting http responses

I've been banging my head against this for awhile now. I have an archiva repository server I'm trying to proxy through nginx with ssl offloading. archiva has a jetty server built in that is listening on port 8008 of the localhost. I'm able to get to…
numb3rs1x
  • 513
  • 1
  • 4
  • 6
3
votes
2 answers

Securing Apache Solr in production

I am setting up Apache Solr 4.1 that will be used to index data for a web app. Only the web app should have access to the Solr. Users and other clients will not talk directly to Solr. What are some of the best practices to secure this type of Solr…
Saqib Ali
  • 428
  • 2
  • 7
  • 21
3
votes
1 answer

Enable SSL with Jetty 8

I received certificates from GoDaddy an I'm trying to enable SSL with Jetty but receive an error 107 SSL protocol error when connecting to https://server.com:8443 I generated the keystore using these commands : keytool -keystore keystore -import…
Jerec TheSith
  • 163
  • 1
  • 3
  • 8
3
votes
1 answer

Configure keep alive timeout on Jetty 6.1.19

How do you set the timeout on keep alive connections to the Jetty web server (in my case v6.1.19)? I would like to configure how long Jetty keeps connections open when a client requests keep alive. Currently it seems indefinite.
justinhj
  • 213
  • 1
  • 3
  • 8
3
votes
2 answers

Silencing Jetty's initial console logging

I've got jetty set up to boot on login using the standard init script in CentOS 6.3 - my problem is that it decides to log a few messages to the console before redirecting it to it's own log files, which ends up printing out on the login screen. It…
user705142
  • 433
  • 6
  • 16
1
2
3
10 11