blob: 053db27e9937c61c128b55b75e3b8e9f59081c55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This file stores configuration options for the java vm
# used by apache tomcat. It does not affect any other java
# applications
# Initial size of memory allocation pool
MEMALLOC_MIN="512m"
# Maximum size of memory allocation pool
MEMALLOC_MAX="1024m"
# Thread stack size
STACK="256k"
# Maximum amount of heap used for permanent generation
MAXPERMSIZE="512m"
|