在 JBoss 中启用 SSI(服务器端包含)?
你们中有人在 JBoss 中启用了 SSI(服务器端包含)吗? 我想这应该不难,因为它是构建在 Tomcat 实例之上的。
Any of you guys have enabled SSI (ServerSide Includes) in JBoss? I guess it should be not difficult as it is built on top of a Tomcat instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tomcat 已在 catalina.jar 中包含 org.apache.catalina.ssi.SSIServlet,因此只需声明 servlet 并将其附加到映射 URL,方法是在应用程序 web.xml< 中进行设置/em>
我把所有参数都放了,你可以在这个 Tomcat SSI 参考。
正如文档所说,SSI 可以绕过安全策略,因此它必须具有特权,请更改位于部署文件夹内的 jboss-web.deploy 中的 context.xml 。 只需将 privileged="true" 添加到根元素即可。
Servlet 将仅充当与其映射的 URL 相匹配的文件的代理。
Tomcat already includes in catalina.jar the org.apache.catalina.ssi.SSIServlet so just declare the servlet and attach it to a mapping URL, by setting this in the applications web.xml
I put all the parameters, you can see their definition in this Tomcat SSI reference.
As the doc says, SSI can bypass security policies so it must be privileged, do this changing the context.xml located in jboss-web.deploy inside the deploy folder. Just add privileged="true" to the root element.
The servlet will just act as a proxy for the files matching the URL of its mapping.