Jetty:将 HTTP 重定向到 HTTPS 以获取静态内容
我已经为Jetty 9.3设置了两个XML上下文配置。一个用于静态内容:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">
<Configure class="org.eclipse.jetty.server.handler.ContextHandler">
<Set name="contextPath">/static</Set>
<Set name="handler">
<New class="org.eclipse.jetty.server.handler.ResourceHandler">
<Set name="resourceBase">/home/user/static</Set>
<Set name="directoriesListed">true</Set>
</New>
</Set>
</Configure>
和一个用于 Web 应用程序(WAR 文件):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<Set name="contextPath">/webapp</Set>
<Set name="war">/home/user/webapp.war</Set>
</Configure>
然后,我使用此答案设置了Jetty以将HTTP请求转发到HTTPS。更具体地说,我添加了以下内容:jetty/etc/webdefault.xml
<security-constraint>
<web-resource-collection>
<web-resource-name>Everything</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
并添加了以下内容到我的:HttpConfiguration
jetty/etc/jetty.xml
<Call name="addCustomizer">
<Arg>
<New class="org.eclipse.jetty.server.SecureRequestCustomizer" />
</Arg>
</Call>
这非常适合我的Web应用程序(即通过HTTP访问服务器在“/webapp”将重定向到HTTPS),但似乎不会影响“/static”下提供的静态内容。我假设这是因为添加到的设置仅适用于Web应用程序,因为它们具有适用的文件。webdefault.xml
web.xml
如何设置 HTTP 请求以重定向到 HTTPS,因为我的所有页面都作为静态内容?