返回列表 发布新帖

[问题求助] 客户目前需要将cross的地址从http改成https。请问互联中台是否支持,如何调整?

2 1
发表于 昨天 17:37 | 查看全部 阅读模式
客户目前需要将cross的地址从http改成https。
请问互联中台是否支持,如何调整?

评论1

姜文盛楼主Lv.7 发表于 昨天 17:44 | 查看全部
本帖最后由 姜文盛 于 2026-3-30 17:45 编辑

可以支持
方法一
NGINX 反向代理

使用者

https://10.20.86.125

Nginx (443)

http://127.0.0.1:9990/CROSS


修改 nginx.conf
server {
listen 443 ssl;
server_name 10.20.86.125;

ssl_certificate      cert.pem;
ssl_certificate_key  cert.key;

location /CROSS/ {
proxy_pass http://127.0.0.1:9990/CROSS/;

proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}

修改后启用 nginx.exe

方法二
调整中台JBOSS设定
1.          digiwin.eai.keystore(数位凭证) 放到 $\CROSS\CROSS\server\default\conf 目录下.
2. 编辑 $\CROSS\CROSS\server\default\deploy\jboss-web.deployer\server.xml

    <!-- Define a SSL HTTP/1.1 Connector on port 8443
         This connector uses the JSSE configuration, when using APR, the
         connector should be using the OpenSSL style configuration
         described in the APR documentation -->
    <!--
    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" />
    -->
改为
    <!-- Define a SSL HTTP/1.1 Connector on port 8443
         This connector uses the JSSE configuration, when using APR, the
         connector should be using the OpenSSL style configuration
         described in the APR documentation -->
    <Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="250" scheme="https" secure="true"
               clientAuth="false"
             strategy="ms"
             address="${jboss.bind.address}"
             keystoreFile="${jboss.server.home.dir}/conf/digiwin.eai.keystore"
             keystorePass="kspw9999"
             truststoreFile="${jboss.server.home.dir}/conf/digiwin.eai.keystore"
             truststorePass="kspw9999"
               sslProtocol="TLS" />


调整后需重启中台服务生效



大家来答
    热门讨论
    精选文章
    Athena平台-任务到期催办功能(逾期提醒)
      需求背景:           对于任务卡发卡后任务在
    前端定制基于postmessage通讯机制使用说明
     业务场景:       在前端定制开发场景中需要实现不同任务
    DAP后端应用写法-使用DWDataSet进行数据库的新增/修改
    场景使用高代码后端要去数据库变更数据, 除了直接下SQL的方式外, 更可用java物件的方
    DAP后端应用写法-使用DWQueryInfo进行数据库的查询
    场景使用高代码后端要去数据库查资料, 除了直接下SQL的方式外, 更可用java物件的方式,
    排錯技巧 - 雅典娜签核,间歇性会报错
     问题描述顾问反馈:雅典娜签核套件点击OA送签或查看签核流程时,间歇性会报错。
    • 关注公众号
    Copyright © 2026 鼎捷数智股份有限公司 版权所有 All Rights Reserved. Powered by Discuz! X5.0
    关灯 在本版发帖
    即将开放
    返回顶部
    快速回复 返回顶部 返回列表