Mercurial > public > ssdt-docker
annotate tomcat/setenv.sh @ 140:73c0c04a44eb production v1.1.1
flow: Merged <hotfix> 'v1.1.1' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Fri, 16 Jun 2017 17:14:15 +0100 |
parents | 53671513b240 |
children |
rev | line source |
---|---|
7 | 1 #! /bin/sh |
2 # | |
3 echo "__________________________________________" | |
4 | |
23 | 5 export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC" |
6 export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseStringDeduplication " | |
7 | 7 export CATALINA_OPTS="$CATALINA_OPTS -Djava.security.egd=file:/dev/./urandom" |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
23
diff
changeset
|
8 export CATALINA_OPTS="$CATALINA_OPTS -Duser.language=en" |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
23
diff
changeset
|
9 export CATALINA_OPTS="$CATALINA_OPTS -Duser.region=US" |
7 | 10 |
11 echo "Using CATALINA_OPTS $CATALINA_OPTS" | |
12 echo "Using JAVA_OPTS $JAVA_OPTS" | |
13 echo "_________________________________________" | |
14 echo "" |