Mercurial > dive4elements > river
view etl/bin/run.sh @ 9803:a440ebd5c23b 3.2.x tip
Avoid using outdated mod_wsgi in Docker setup
Run Wiki in standalone mode behind reverse proxy, which is provided by
a more up-to-date Apache web server. The wiki container is still based
on CentOS 7, because the included SSO integration component cannot be
build with more recent libraries.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Wed, 21 Aug 2024 16:54:17 +0200 |
parents | 0a5239a1e46e |
children |
line wrap: on
line source
#!/bin/bash APP=org.dive4elements.river.etl.aft.Sync DIR=`dirname $0` DIR=`readlink -f $DIR` CONF=${1:-../doc/conf.xml} CONF=$(readlink -f $CONF) LOG4J_CONF=${2:-log4j2.xml} LOG4J_CONF=$(readlink -f $LOG4J_CONF) CLASSPATH= for l in `find "$DIR/lib" -name \*.jar -print`; do CLASSPATH=$CLASSPATH:$l done export CLASSPATH exec java \ -Dlog4j2.configurationFile=file://$LOG4J_CONF \ -Dconfig.file=$CONF \ $APP