Skip to content

Commit df430df

Browse files
authored
Merge pull request #691 from gschwind/pr-improve-default-config
Improve the content of default-config.cfg
2 parents 0bec4e6 + 7f33918 commit df430df

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

default-sample.cfg

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,36 @@ maxprocesses=30
6161
parallelprocesses=2
6262
storagetype=file
6363

64+
# hardcoded default : tempfile.gettempdir()
65+
; temp_path=/tmp
66+
67+
processes_path=
68+
# list of allowed input paths (file url input) seperated by ':'
69+
allowedinputpaths=
70+
71+
# hardcoded default : tempfile.gettempdir()
72+
; workdir=
73+
74+
# If this flag is enabled it will set the HOME environment for each process to
75+
# its current workdir (a temp folder).
76+
sethomedir=false
77+
78+
# If this flag is true PyWPS will remove the process temporary workdir after
79+
# process has finished.
80+
cleantempdir=true
81+
82+
# File storage outputs can be copied, moved or linked from the workdir to the
83+
# output folder.
84+
# Allowed functions: "copy", "move", "link" (hardcoded default "copy")
85+
storage_copy_function=copy
86+
87+
# Handles the default mimetype for requests.
88+
# valid options: "text/xml", "application/json"
89+
default_mimetype=text/xml
90+
91+
# Default indentation used for json data responses.
92+
json_indent=2
93+
6494
# hardcoded default : tempfile.gettempdir()
6595
#temp_path=/tmp
6696

@@ -96,6 +126,12 @@ json_indent=2
96126
[processing]
97127
mode=default
98128

129+
# hardcoded default: os.path.dirname(os.path.realpath(sys.argv[0]))
130+
; path=
131+
132+
# https://github.com/natefoo/slurm-drmaa
133+
drmaa_native_specification=
134+
99135
# hardcoded default: os.path.dirname(os.path.realpath(sys.argv[0]))
100136
#path=
101137

0 commit comments

Comments
 (0)