使用https(SSL)url访问alfresco

使用https(SSL)url访问alfresco,ssl,alfresco,alfresco-share,Ssl,Alfresco,Alfresco Share,我想从http://localhost:8080/share 到https://sitename.companyname.com/share。 我更愿意使用Alfresco tomcat服务器进行此更改,而不涉及代理 我做了以下更改以更改端口号: alfresco-global.properties alfresco.context=alfresco alfresco.host=sitename.companyname.com 露天港口=8443 alfresco.protocol=https

我想从
http://localhost:8080/share
到<代码>https://sitename.companyname.com/share。 我更愿意使用Alfresco tomcat服务器进行此更改,而不涉及代理

我做了以下更改以更改端口号:

  • alfresco-global.properties

    alfresco.context=alfresco alfresco.host=sitename.companyname.com 露天港口=8443 alfresco.protocol=https

    share.context=share share.host=sitename.companyname.com share.port=8443 share.protocol=https

  • share-config-custom.xml

  • 将端点url更改为
    http://localhost:8443/alfresco/

    有人能建议https设置需要做哪些更改吗


    谢谢。

    将SSL与alfresco一起使用的步骤

    server.xml中的设置

        <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" />
    
    
    
    alfresco-global.property中的设置

    • alfresco.context=alfresco
    • alfresco.host=sitename.companyname.com
    • alfresco.port=8443 alfresco.protocol=https
    • share.context=share
    • share.host=sitename.companyname.com
    • share.port=8443
    • share.protocol=https
    share-config-custom.xml中的设置


    相应地修改端点url,例如:https://:8443/alfresco/

    您看到的问题是什么?我按照@mitpatoloya提到的步骤进行操作,并得到如下注释的错误。另外,我想使用我公司购买的用于https站点的SSL认证。Hi@mitpatoliya,谢谢回复。我遵循了你提到的确切步骤。当我尝试访问时,它会给出以下错误日志:由以下原因引起:java.net.BindException:地址已在使用:JVM\u Bind:8443。此外,我想使用我自己的SSL证书。如何做到这一点?首先尝试访问sitename.mycompany.com/alfresco您可以使用https访问它吗?要使用您自己的ssl,您需要使用您的域“sitename.mycompany.com”生成ssl证书并在JVM信任库中注册该证书。我尝试只访问sitename.mycompany.com/alfresco,但在日志中发现一个连接被拒绝错误。现在可以使用。不知道如何摆脱端口8443并将其设为默认端口。