02-24-2014 06:11 AM
server {
listen 443;
server_name alfresco.companyname.com;
ssl on;
ssl_certificate /etc/ssl/certs/alfresco.companyname.com.crt;
ssl_certificate_key /etc/ssl/private/alfresco.companyname.com.key;
rewrite ^/$ /share;
location / {
root /opt/alfresco-4.2.e/tomcat/webapps/share/;
proxy_pass https://localhost:8443;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header host $host;
proxy_set_header X-Forwarded-Server $host;
}
}
<#if args.workflowPooled == true>
<p>Klicken Sie auf diesen Link um die Aufgabe einzusehen:</p>
<p><a href="${shareUrl}/page/task-details?taskId=${args.workflowId}">${shareUrl}/page/task-details?taskId=${args.workflowId}</a>
<#else>
<p>Klicken Sie auf diesen Link um die Aufgabe zu ändern:</p>
<p><a href="${shareUrl}/page/task-edit?taskId=${args.workflowId}">${shareUrl}/page/task-edit?taskId=${args.workflowId}</a>
</#if>
05-26-2017 09:01 AM
If you have this in your config file and the port is still showing in the task link
dir.root=/opt/alfresco-4.2.e/alf_data
alfresco.context=alfresco
alfresco.host=alfresco.companyname.com
alfresco.port=8080
alfresco.protocol=http
share.context=share
share.host=alfresco.companyname.com
share.port=8080
share.protocol=https
All you need to change is share.port=443.
I guess you should be fine.
01-09-2018 01:07 AM
Hey,
To anyone facing this issue just change the prop share.port and alfresco.port to 80 instead of 8080.
share.port=80
alfresco.port=80
You will see the url changed
FROM:
https://alfresco.companyname.com:8080/share/page
TO:
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.