|
From: Claudio M. <cl...@cl...> - 2007-09-13 01:07:09
|
It's not a jetty responsibility, but your application. It's easy, insert
the following web.xml snippet and customize it to your needs.
<security-constraint>
<web-resource-collection>
<web-resource-name>HTTPS Login</web-resource-name>
<url-pattern>/Login.jsp</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Pradeep Chandrashekar wrote:
>
> How do we redirect HTTP connections to HTTPS in Jetty.
>
--
View this message in context: http://www.nabble.com/Redirecting-HTTP-to-HTTPS-tf4431491.html#a12646953
Sent from the Jetty Support mailing list archive at Nabble.com.
|