Skip to content

Running the service behind an SSL Proxy

Angel Borroy edited this page Sep 13, 2018 · 1 revision

Following instructions describe how to configure an external SSL Proxy (Apache HTTPd or NGINX) in Alfresco Share.

  1. Add following lines to Share Dockerfile
# Proxy pass configuration for SSL
RUN sed -i '/<Connector port="8080" protocol="HTTP\/1.1"/a \
    proxyName="external.server.com"\n\
    proxyPort="443" \n\
    scheme="https" \n\
    secure="true" \
' $TOMCAT_DIR/conf/server.xml

Where server.external.com is the name of your external SSL Proxy.