forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discourse.json
66 lines (65 loc) · 1.71 KB
/
discourse.json
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
{
"Discourse": {
"description": "100% open source discussion platform",
"ui": {
"slug": ""
},
"website": "https://www.discourse.org/",
"version": "1.0",
"containers": {
"discourse": {
"image": "discourse/discourse",
"launch_order": 1,
"ports": {
"80": {
"description": "Discourse webserver/forum port. You may need to open it(protocol: tcp) on your firewall. Suggested default: 8080",
"host_default": 8080,
"label": "Webserver port",
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"datastore": {
"description": "Choose a Share for all of your forum content. Eg: create a Share called discourse-datastore for this purpose alone.",
"label": "Discourse datastore",
"min_size": 1073741824
}
}
}
},
"custom_config": {
"admin-email": {
"description": "E-mail address of the forum administrator. Eg: [email protected]",
"label": "Admin e-mail",
"index": 1
},
"hostname" : {
"description": "FQDN of your forum. Users will access the forum with this web address. Eg: forum.rockstor.com",
"label": "Forum web address",
"index": 2
},
"smtp-address": {
"description": "SMTP server address to use to send e-mails to forum members. Eg: smtp.gmail.com",
"label": "SMTP server",
"index": 3
},
"smtp-port": {
"description": "SMTP server port. In many cases, 587 is used.",
"label": "SMTP port",
"default": 587,
"index": 4
},
"smtp-username": {
"description": "SMTP username/email-address. Eg: [email protected]",
"label": "SMTP username",
"index": 5
},
"smtp-password": {
"description": "Password for the above e-mail address",
"label": "SMTP password",
"index": 6
}
}
}
}