02-02-2016 05:53 AM
# Authentication Chain (sorba1:sorba is my custom authentication)
authentication.chain=alfrescoNtlm1:alfrescoNtlm,sorba1:sorba
…
# Sharepoint / VTI
vti.server.port=7070
vti.server.protocol=https
vti.server.ssl.keystore=C:\\path\\to\\MyCert.pfx
vti.server.ssl.password=SomeSecretPassword
vti.server.url.path.prefix=/alfresco
vti.server.external.host=alfresco.mydomain.com
vti.server.external.port=7070
vti.server.external.protocol=https
vti.server.external.contextPath=/alfresco
02-02-2016 11:59 AM
02-04-2016 10:13 AM
vti.server.port=7070
vti.server.protocol=http
vti.server.ssl.keystore=C:/Alfresco/alf_data/keystore/ssl.keystore
vti.server.ssl.password=kT9X6oe68t
vti.server.url.path.prefix=/alfresco
vti.server.external.host=drive.sorba.ch
vti.server.external.port=443
vti.server.external.protocol=https
vti.server.external.contextPath=/alfresco
<VirtualHost *:80>
#LoadModule rewrite_module modules/mod_rewrite.so
RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://alfresco.mycompany.ch/share$1 [R=301,NC,L]
</VirtualHost>
<VirtualHost *:443>
ServerAdmin mlin@mycompany.ch
ServerName alfresco.mycompany.ch
# share is our default application
Redirect / /share/
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
LogLevel warn
# SSL Engine Switch:
SSLEngine on
SSLCertificateFile /etc/ssl/certs/chainfile.domaincert.key.crt
SSLCertificateKeyFile /etc/ssl/private/Star_MyCompany.key
SSLCertificateChainFile /etc/ssl/certs/chainfile.domaincert.key.crt
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
# SSL Protocol Adjustments:
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# MSIE 7 and newer should be able to use keepalive
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
TimeOut 3600
KeepAlive On
# Einstellungen fuer den Alfresco-Tomcat
AddDefaultCharset UTF-8
# Einstellungen fuer den AJP Proxy
ProxyPass /alfresco http://alfresco.mycompany.ch:8080/alfresco
ProxyPassReverse /alfresco http://alfresco.mycompany.ch:8080/alfresco
ProxyPass /share http://alfresco.mycompany.ch:8080/share
ProxyPassReverse /share http://alfresco.mycompany.ch:8080/share
<Proxy *>
AddDefaultCharset on
Order deny,allow
Allow from all
</Proxy>
</VirtualHost>
02-05-2016 06:58 PM
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.