forked from pauljz/_jaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample.sh
executable file
·51 lines (44 loc) · 1.08 KB
/
config.sample.sh
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
##
## S3 Bucket
##
JAWS_BUCKET=s3://example/
##
## CDN Paths
## If desired, these can be the same. You might want them to be different to have different CloudFront settings
##
JAWS_STATICCDN=http://static.example.com/
JAWS_IMAGECDN=http://images.example.com/
##
## The command used to generate your site.
##
JAWS_GENERATE="jekyll --no-server --no-auto --pygments"
##
## Max age cache settings
##
JAWS_LONGCACHE=2678400
JAWS_SHORTCACHE=86400
##
## Command to use to generate versions/timestamps on static content. If you're not using git, try the date one
##
## To use the git HEAD revision:
JAWS_REVISION=`git rev-parse HEAD`
## To use the current unix timestamp:
# JAWS_REVISION=`date +%s`
##
## Whether or not to use color in the output
##
## Use color:
JAWS_COLOR=1
## Don't use color:
# JAWS_COLOR=0
##
## gzip algorithm
##
## To use gzip's highest compression setting
JAWS_ZIPCMD=gzip -9 -n
## To use zopfli (https://code.google.com/p/zopfli/) - better but slower
# JAWS_ZIPCMD=zopfli
##
## Echo out filenames that are being manipulated - Could get spammy with a large blog
##
JAWS_VERBOSE=1