cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco com SSL

webdevptg
Confirmed Champ
Confirmed Champ

Good afternoon,

I have implemented the Alfresco Community 5.1 on Windows Server, but I'm having trouble implementing SSL for everything to work properly. Some Dashlet not show the content and search is not working.

  • The SSL certificate that was begotten generated from this tutorial
https://linuxblogit.wordpress.com/tag/configurar-alfresco-https/
  • The server.xml file is as follows:

   <Connector port="443" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true"
               maxThreads="150" scheme="https" keystoreFile="D:\APPS\ALFRESCO/alf_data/ssl/key-tomcat" keystorePass="MinhaPass" keystoreType="JKS"
secure="true" connectionTimeout="240000" clientAuth="false" sslProtocol="TLS" allowUnsafeLegacyRenegotiation="true" /> 

The research that I performed I think is related to the Solr4 once commented lines of the connector that was defined by default

<!-- OLD CONNECTOR
<Connector port="443" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true"
               maxThreads="150" scheme="https" keystoreFile="D:\APPS\ALFRESCO/alf_data/keystore/ssl.keystore" keystorePass="pass" keystoreType="JCEKS"
secure="true" connectionTimeout="240000" truststoreFile="D:\APPS\ALFRESCO/alf_data/keystore/ssl.truststore" truststorePass="pass" truststoreType="JCEKS"
               clientAuth="want" sslProtocol="TLS" allowUnsafeLegacyRenegotiation="true" maxHttpHeaderSize="32768" maxSavePostSize="-1" /> 
  
--> 

They were added and edited files in the last hours, but the results are the following:

Any idea?

Thank you!

5 REPLIES 5

webdevptg
Confirmed Champ
Confirmed Champ

I need help for this question.

Someone can help me?

Thanks

douglascrp
World-Class Innovator
World-Class Innovator

The easiest is to put a webserver in front of Alfresco, and let the webserver to deal with SSL.

You can find some useful resources in these links (for Apache webserver):

Configuring Alfresco SSL certificates | Programming and So

Configuring Alfresco SSL by using Let's Encrypt - keensoft

And in this with NGINX:

Ezref.info - How to setup Alfresco with Nginx as the frontend web server

webdevptg
Confirmed Champ
Confirmed Champ

My operating system is Windows Server, and 3 links in your reply is for Linux

douglascrp
World-Class Innovator
World-Class Innovator

Both Apache and NGINX can be installed on Windows.

The tutorials contain information to help you to configure them if you decide to install them.

I don't know any tutorial for Alfresco with SSL on Windows.

Going back to your first configuration, all you need is to include solr client certificate on your new keystore, read carefully Configuring Alfresco SSL certificates | Programming and So  to learn how

Hyland Developer Evangelist