-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreference.conf
44 lines (35 loc) · 1.23 KB
/
reference.conf
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
43
44
# This is the configuration file for the service.
# https://github.com/XenonAbe/play-service
#
# This uses HOCON as its configuration file format.
# see: https://github.com/akkadotnet/HOCON
#
# In this file, Special environment variables can be used.
# WorkDir: The specified work directory path
# WorkDirName: Only the filename of the WorkDir (Path.GetFileName(WorkDir))
# WorkDirNameUri: Uri Escaped WorkDirName
#
# For Default setting, See reference.conf file in source.
## Service Configurations
service {
## Configurations of target application
app {
# Application name
# The name is specified in build.sbt
name = ""
# Application options used in Play's launcher script
option = []
# Environment variables for execution
environment {
}
# Set when pidfile path is changed in option or application.conf
pidfilePath = ""
outputEncoding = "utf-8"
}
# Service timeouts
timeoutOnStart = 1 minutes
timeoutOnStop = 1 minutes
# If true, generate a test launch script that reflects the configurations when the service starts.
# The service does not actually start in this case
generateTrialLauncher = false
}