-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigfastcgi.js
44 lines (41 loc) · 1.62 KB
/
configfastcgi.js
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
{
"service" : {
"api" : "fastcgi",
"socket": "stdin" // we use socket given by server
},
"cache" : {
"backend" : "process_shared",
"memory" : 65536,
},
"security" : {
"aeskey" : "fae3kkkkdla11437idzx",
"usersalt1" : 1234567891,
"usersalt2" : 9876543211,
"tokenexpiredurationinseconds": 500,
},
"database" : {
"connectionstring" : "user=postgres password=postgrespass dbname=hpcdb hostaddr=127.0.0.1 port=5432",
},
"callback" : {
"packagecallbackurl" : "http://127.0.0.1?packageid=$id&state=$state",
"packagecallbackenabled" : false,
"jobcallbackurl" : "http://127.0.0.1?jobid=$id&state=$state",
"jobcallbackenabled" : false,
"isabsolutecallbackurl" : false,
},
"scheduler" : {
"workeritemcount" : 50,
"maxsshconnectionperhpc" : 10,
"scpbufsiz" : 102400,
"stdoutbufsiz" : 512,
"jobstatuscheckdelayinseconds" : 10,
"isinputinlocalmode" : false,
"isoutputinlocalmode" : false,
"isabsoluteurl" : true,
"inputfolder" : "../data/",
"outputfolder" : "../data/",
"inputurl" : "https://127.0.0.1/$file",
"outputurlsrc" : "/irods/home/rods/",
"outputurl" : "sftp://sftpusername:[email protected]/~/hydrogatedata/",
}
}