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>
02-25-2014 12:30 AM
02-25-2014 06:48 AM
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
03-04-2014 03:44 AM
03-04-2014 11:51 AM
<VirtualHost *:443>
ServerName fqdn.net
SSLEngine on
SSLCertificateKeyFile to/some/filepath/file.key
SSLCertificateFile to/some/filepath/file.crt
SSLCACertificateFile to/some/filepath/file.crt
RequestHeader set X-Forwarded-Proto "https"
ProxyPass / http://fqdn.net:8080/
ProxyPassReverse / http://fqdn.net:8080/
ProxyTimeout 300
SSLProxyEngine on
<Proxy *>
allow from all
</Proxy>
</VirtualHost>
03-05-2014 09:55 AM
03-05-2014 12:16 PM
https://fqdn/share/proxy/alfresco/api/node/content/workspace/SpacesStore/678ca124-014d-4165-9bef-9ef...
03-24-2014 07:26 AM
03-24-2014 02:31 PM
10-14-2016 08:35 AM
Same problem here, I have a Nginx as a reverse proxy e the e-mails from activity came with the Alfresco port and not with Nginx port. Some news about this problem?
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.