-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.json
66 lines (66 loc) · 1.94 KB
/
config.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
{
"ignoreErrors": ["error-output-taxonomy"],
"baseurl": "https://blog.scottlowe.org/",
"rssLimit": 15,
"disablePathToLower": false,
"languageCode": "en-us",
"title": "Scott's Weblog",
"publishdir": "output",
"permalinks": {
"post": ":year/:month/:day/:title/",
"fixed": ":title/"
},
"theme": "lanyon-hugo",
"params": {
"Title": "Scott's Weblog",
"Tagline": "The weblog of an IT pro focusing on cloud computing, Kubernetes, Linux, containers, and networking",
"Author": "Scott Lowe",
"GitHubUser": "scottslowe",
"TwitterUser": "scott_lowe",
"LinkedInUser": "scottslowe",
"Description": "Original, technical content centered around cloud computing, Kubernetes, Linux, containers, and networking",
"DateForm": "2 Jan 2006"
},
"blackfriday": {
"fractions": false
},
"outputs": {
"home": ["HTML","RSS"],
"taxonomy": ["HTML","RSS"]
},
"outputformats": {
"RSS": {
"mediatype": "application/rss",
"baseName": "feed"
}
},
"deployment": {
"targets": [
{
"name": "aws",
"url": "s3://blog-scottlowe-org-cdn?region=us-east-1"
}
],
"matchers": [
{
"pattern": "^.+\\.(js|css|svg|ttf)$",
"cacheControl": "max-age=31536000, no-transform, public",
"gzip": "true"
},
{
"pattern": "^.+\\.(png|jpg)$",
"cacheControl": "max-age=31536000, no-transform, public",
"gzip": "true"
},
{
"pattern": "^sitemap\\.xml$",
"contentType": "application/xml",
"gzip": "true"
},
{
"pattern": "^.+\\.(html|xml|json)$",
"gzip": "true"
}
]
}
}