A small DropWizard bundle which will redirect any incoming HTTP requests to the equivalent HTTPS URL. Handles both the cases where the application is hosting both HTTP and HTTPS directly or where it is sitting behind an SSL proxy and receiving all traffic as HTTP.
Also protects against HTTP Response Splitting attacks.
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>dropwizard-https-redirect</artifactId>
<version>0.0.4</version>
</dependency>
Modify your application configuration class so that it implements HttpEnforcementConfiguration
.
The isHttpsOnly()
property enables or disables the redirection. It usually makes sense to disable it in configuration when testing locally.
The getHttpResponsibility()
property is extremely important:
- If your application is exposed directly to the internet without any sort of proxy (so your application manages its own SSL certificates) set this to
HTTPS_DIRECT
. The bundle will check the servlet request directly to ensure that it is secure. - If your application is hosted behind a proxy, and the proxy is managing the SSL side of things and forwarding both HTTP and HTTPS to your application as plain old HTTP (common with platforms such as Heroku), we have to rely on the proxy to tell us what the original protocol was using the
X-Forwarded-Proto
header. Most proxies do this, but do check yours. To enabled this, useHTTPS_AT_PROXY
.
In your Application
, modify initialise()
:
@Override
public void initialize(final Bootstrap<MyConfiguration> bootstrap) {
bootstrap.addBundle(new HttpsEnforcementBundle());
}
That's it!
The POM and Travis build borrow heavily from other projects. See oss-archetype for credits.