-
Notifications
You must be signed in to change notification settings - Fork 3
/
site_settings-required.json
165 lines (165 loc) · 5.61 KB
/
site_settings-required.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"site_settings": [
{
"setting": "title",
"description": "The name of this site, as used in the title tag.",
"default": "Discourse",
"type": "string",
"value": "Discourse",
"category": "required",
"preview": null
},
{
"setting": "site_description",
"description": "Describe this site in one sentence, as used in the meta description tag.",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "contact_email",
"description": "Email address of key contact responsible for this site. Used for critical notifications such as unhandled flags, as well as on the /about contact form for urgent matters.",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "contact_url",
"description": "Contact URL for this site. Used on the /about contact form for urgent matters.",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "notification_email",
"description": "The from: email address used when sending all essential system emails. The domain specified here must have SPF, DKIM and reverse PTR records set correctly for email to arrive.",
"default": "[email protected]",
"type": "string",
"value": "[email protected]",
"category": "required",
"preview": null
},
{
"setting": "site_contact_username",
"description": "A valid staff username to send all automated messages from. If left blank the default System account will be used.",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "logo_url",
"description": "The logo image at the top left of your site, should be a wide rectangle shape. If left blank site title text will be shown.",
"default": "/images/d-logo-sketch.png",
"type": "string",
"value": "/images/d-logo-sketch.png",
"category": "required",
"preview": null
},
{
"setting": "logo_small_url",
"description": "The small logo image at the top left of your site, should be a square shape, seen when scrolling down. If left blank a home glyph will be shown.",
"default": "/images/d-logo-sketch-small.png",
"type": "string",
"value": "/images/d-logo-sketch-small.png",
"category": "required",
"preview": null
},
{
"setting": "digest_logo_url",
"description": "The alternate logo image used at the top of your site's email summary. Should be a wide rectangle shape. Should not be an SVG image. If left blank `logo_url` will be used.",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "mobile_logo_url",
"description": "The fixed position logo image used at the top left of your mobile site. Should be a square shape. If left blank, `logo_url` will be used. eg: http://example.com/uploads/default/logo.png",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "favicon_url",
"description": "A favicon for your site, see http://en.wikipedia.org/wiki/Favicon, to work correctly over a CDN it must be a png",
"default": "/images/default-favicon.ico",
"type": "string",
"value": "/images/default-favicon.ico",
"category": "required",
"preview": null
},
{
"setting": "apple_touch_icon_url",
"description": "Icon used for Apple touch devices. Recommended size is 144px by 144px.",
"default": "/images/default-apple-touch-icon.png",
"type": "string",
"value": "/images/default-apple-touch-icon.png",
"category": "required",
"preview": null
},
{
"setting": "default_opengraph_image_url",
"description": "URL of the default opengraph image.",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "twitter_summary_large_image_url",
"description": "URL of the default Twitter summary card image (should be at least 280px in width, and at least 150px in height).",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "exclude_rel_nofollow_domains",
"description": "A list of domains where nofollow should not be added to links. tld.com will automatically allow sub.tld.com as well. As a minimum, you should add the top-level domain of this site to help web crawlers find all content. If other parts of your website are at other domains, add those too.",
"default": "",
"type": "list",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "company_short_name",
"description": "Company Name (short)",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "company_full_name",
"description": "Company Name (full)",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
{
"setting": "company_domain",
"description": "Company Domain",
"default": "",
"type": "string",
"value": "",
"category": "required",
"preview": null
},
}