-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.ini.dist
81 lines (70 loc) · 2.3 KB
/
config.ini.dist
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[task-db]
# CouchDB task database configuration
url = https://couch.example.com
username = myuser
password = mypassword
database = mytaskdatabase
# To turn off SSL verification, uncomment the next line
# ssl_verification = off
[job-db]
# CouchDB job database configuration. Remove this section
# to use the task database for storing jobs.
url = https://couch.example.com
username = myuser
password = mypassword
database = myjobdatabase
# To turn off SSL verification, uncomment the next line
# ssl_verification = off
# CouchDB configuration database. Uncomment to use get additional
# configuration. Alternatively, these settings can be set as environment
# variables $SIMCITY_CONFIG_URL, $SIMCITY_CONFIG_DB, $SIMCITY_CONFIG_USER,
# $SIMCITY_CONFIG_PASSWORD.
#[config-db]
#url = https://couch.example.com
#database = configurator
#username = priviligeduser
#password = priviligedpassword
[webdav]
# WebDAV configuration for storing files. Remove this
# section to have attachments stored in the task database.
url = https://webdav.example.com
username = myuser
password = mypassword
# Uncomment the next line to disable webdav.
# enabled = false
# Uncomment the next line to turn off SSL verification,
# ssl_verification = off
# Uncomment the next line and enter a filename or directory
# to use the CA certificate chain at that path
# certificate = path/to/ca-chain.pem
[Execution]
# Fire storage during task execution
tmp_dir = $TMPDIR
output_dir = $HOME/out
input_dir = $HOME/in
# Uncomment to define host mycluster
#[mycluster-host]
## Configuration of a single job host
#path = path/to/submitscript
#script = submitscript.sh
#host = user@hostname
## Method is either ssh or xenon.
#method = ssh
# Uncomment to define host mycluster2
#[mycluster2-host]
## Configuration of a single job host, using Xenon
#path = path/to/runscript
#script = runscript.sh
## Schema defines what submission system the host uses.
#host = torque://user@hostname
## Method is either ssh or xenon.
#method = xenon
## time in minutes: 1 day
#max_time = 1440
## Set alternative credentials (instead of the ones in
## ~/.ssh/config) by commenting out the values below.
## All values are optional
#private-key = $HOME/.ssh/id_rsa
## If a private-key is given, this is the password to
## the private key. Otherwise, it is the login password.
#password = mypassword