Skip to content

Configuring AOS Module (SharePoint protocol)

Angel Borroy edited this page Oct 4, 2018 · 4 revisions

Following instructions describe how to configure AOS Module to Sharepoint Protocol features in Alfresco Repository.

  1. Add installation instructions to alfresco Dockerfile
# Install wget
RUN yum -y update && \
 yum -y install wget && \
 yum -y install unzip && \
 yum clean all

# Install AOS
RUN set -x \
        && mkdir /tmp/aos \
        && wget --no-check-certificate https://download.alfresco.com/cloudfront/release/community/201806-GA-build-00113/alfresco-aos-module-distributionzip-1.2.0.zip \
        && unzip alfresco-aos-module-distributionzip-1.2.0.zip -d /tmp/aos \
        && mv /tmp/aos/extension/* /usr/local/tomcat/shared/classes/alfresco/extension \
        && mv /tmp/aos/alfresco-aos-module-1.2.0.amp amps \
        && mv /tmp/aos/aos-module-license.txt licenses \
        && mv /tmp/aos/_vti_bin.war /usr/local/tomcat/webapps \
        && rm -rf /tmp/aos alfresco-aos-module-distributionzip-1.2.0.zip

AOS requires SSL, so you need to provide an HTTPs access to Alfresco Repository.