If you choose to use the Apache Web Server (on Linux or Windows), you must manually create the bridge between the Apache Web Server and the DocuShare Tomcat servlet.
During DocuShare software installation, the Wizard installs the following Apache files:{dshome}/tomcat/bin/native/apache2.4/mod_jk.so
{dshome}/tomcat/conf/jk/workers.properties
{dshome}/tomcat/conf/jk/apache2.4/httpd.conf
To manually create a bridge between the Apache Web Server and the DocuShare Tomcat servlet:
1. Locate the directory where you installed your Apache Web Server, open the httpd.conf file in that directory, and paste the following lines of code into that file. Replace the {dshome} path with the correct one.
#
# httpd.conf additions for DocuShare tomcat bridge
#
<IfModule !mod_jk.c>
LoadModule jk_module "{dshome}/tomcat/bin/native/apache2.4/mod_jk.so"
</IfModule>
JkWorkersFile "{dshome}/tomcat/conf/jk/workers.properties"
JkLogFile "{dshome}/tomcat/logs/mod_jk.log "
JkLogLevel emerg
JkMount /docushare ajp13
JkMount /docushare/* ajp13
#
# httpd.conf additions for DocuShare tomcat bridge
#
2. Save the file.
3. Restart Apache.