-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.properties
42 lines (33 loc) · 1.62 KB
/
config.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
######################################
## ThingWorx Portable Configuration ##
######################################
## Quick Info
## Port information is found as http.port or https.port
## The THINGWORX_PLATFORM_SETTINGS folder is the working directory (folder where config.properties is)
## Debugging can be configured using the debugging.enable property
## If you need aditional params in CATALINA_OPTS, you can use the config.additionalParams variable
# The name of the instance. Will be displayed as the terminal title
instanceName=Thingworx Blank Instance
## HTTP configuration:
# the port tomcat will run on using HTTP
http.port=8015
## HTTPS configuration. It uses a keystore file located under apache-tocat, named .keystore
## You can replace it with your own keystore if needed
# the port tomcat will run on using HTTPS
https.port=8443
# keystore password for the .keystore file
https.keystorePassword=thingworx
# If debugging is enabled on this instance. Use true/false values
debugging.enable=false
# the port to use for debugging
debugging.port=1045
# If the script should try to open the browser after before the instance
openbrowser.disabled=true
## specify some parameters used to start thingworx here.
# the min memory the JVM should start with
config.minMemory=1028M
# additional parameters that you need to pass to the JVM (inside CATALINA_OPTS)
config.additionalParams=
# The Java installation folder. On windows it should be something like this: C:\Program Files\Java\jre1.8.0_92.
# If not set, then use the system provided JRE_HOME, or if that is not set attempt to find the one
#JRE_HOME=C:\Program Files\Java\jre1.8.0_92