-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathnode-canvas.json
More file actions
48 lines (47 loc) · 1018 Bytes
/
node-canvas.json
File metadata and controls
48 lines (47 loc) · 1018 Bytes
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
{
"name": "canvas",
"run_list": [
"recipe[redis]",
"recipe[postgresql::server]",
"recipe[canvas]"
],
"redis": {
"bind":"127.0.0.1",
"port":"6379",
"daemonize":"yes"
},
"postgresql": {
"password":{ "postgres":"helloworld" },
"hba": [ { "method":"md5", "address":"127.0.0.1/32" } ],
"listen_addresses":"127.0.0.1"
},
"canvas": {
"redis_server": "127.0.0.1",
"sql_server": "127.0.0.1",
"sql_user": "postgres",
"sql_password": "helloworld",
"fqdn": "canvas.local",
"random_key":"231eb9704dc334012f4734f4001c42d158a3",
"sql_db_create_db": true,
"install_qti_tools": true
},
"nginx": {
"gzip":"on",
"init_style" : "init",
"install_method":"source",
"package_name":"nginx-full",
"source": {
"modules": [
"http_ssl_module",
"passenger",
"http_gzip_static_module"
]
},
"passenger": {
"ruby": "/usr/bin/ruby1.9.1",
"version":"3.0.19",
"root":"/var/lib/gems/1.9.1/gems/passenger-3.0.19/",
"gem_binary":"/usr/bin/gem1.9.1"
}
}
}