Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the content of default-config.cfg #691

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions default-sample.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,36 @@ maxprocesses=30
parallelprocesses=2
storagetype=file

# hardcoded default : tempfile.gettempdir()
; temp_path=/tmp

processes_path=
# list of allowed input paths (file url input) seperated by ':'
allowedinputpaths=

# hardcoded default : tempfile.gettempdir()
; workdir=

# If this flag is enabled it will set the HOME environment for each process to
# its current workdir (a temp folder).
sethomedir=false

# If this flag is true PyWPS will remove the process temporary workdir after
# process has finished.
cleantempdir=true

# File storage outputs can be copied, moved or linked from the workdir to the
# output folder.
# Allowed functions: "copy", "move", "link" (hardcoded default "copy")
storage_copy_function=copy

# Handles the default mimetype for requests.
# valid options: "text/xml", "application/json"
default_mimetype=text/xml

# Default indentation used for json data responses.
json_indent=2

# hardcoded default : tempfile.gettempdir()
#temp_path=/tmp

Expand Down Expand Up @@ -96,6 +126,12 @@ json_indent=2
[processing]
mode=default

# hardcoded default: os.path.dirname(os.path.realpath(sys.argv[0]))
; path=

# https://github.com/natefoo/slurm-drmaa
drmaa_native_specification=

# hardcoded default: os.path.dirname(os.path.realpath(sys.argv[0]))
#path=

Expand Down