项目

一般

简介

类似tomcat的配置 设置http和https访问, 使用http协议访问时强制转为https协议

由 何 善才 在 将近 2 年 之前添加

操作步骤:

打开https端口服务:
修改 AAS-V9.0\domains\mydomain\config\apusic.conf 文件

    <ATTRIBUTE NAME="SSLEnabled" VALUE="True"/> :原始配置为false
    <ATTRIBUTE NAME="SecurePort" VALUE="6889"/>

2、修改金蝶的域目录(比如mydomain)AAS-V9.0\domains\mydomain\config\web.xml文件,在最后(在</web-app>之前)添加如下代码即可实现http跳转到https:

<security-constraint>
   
 <web-resource-collection>
   <web-resource-name>SSL</web-resource-name>
  <url-pattern>/*</url-pattern>
</web-resource-collection>
 
 <user-data-constraint>
  <transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>

</security-constraint>