-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
84 lines (84 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"debug": true,
"metricsPort": 9000,
"adminPort": 9001,
"backendHost": "web",
"backendScheme": "http",
"backendPort": 80,
"backendHealthCheck": "/healthz",
"backendTimeoutMs": 10000,
"frontendPort": 8080,
"cacheMaxSize": 1000000000,
"cacheableMIMETypes": {
"application/x-bzip2": true,
"application/x-7z-compressed": true,
"application/msword": true,
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": true,
"application/vnd.ms-fontobject": true,
"application/pdf": true,
"application/zip": true,
"application/x-tar": true,
"application/x-rar-compressed": true,
"application/x-shockwave-flash": true,
"application/x-font-ttf": true,
"application/x-font-woff": true,
"application/x-font-woff2": true,
"application/xhtml+xml": true,
"application/xml": true,
"application/atom+xml": true,
"application/rss+xml": true,
"application/gzip": true,
"application/javascript": true,
"audio/flac": true,
"image/bmp": true,
"image/gif": true,
"image/x-icon": true,
"image/jpeg": true,
"image/jpg": true,
"image/png": true,
"image/svg+xml": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/javascript": true,
"text/plain": true,
"text/xml": true,
"text/html": true,
"video/x-msvideo": true,
"video/x-flv": true
},
"nonCacheablePatterns": [
"add_to_cart",
"edd_action",
"nocache",
"^/addons",
"^/bb-admin",
"^/bb-login.php",
"^/bb-reset-password.php",
"^/cart",
"^/checkout",
"^/control.php",
"^/login",
"^/logout",
"^/lost-password",
"^/my-account",
"^/product",
"^/register",
"^/register.php",
"^/server-status",
"^/signin",
"^/signup",
"^/stats",
"^/wc-api",
"^/wp-admin",
"^/wp-comments-post.php",
"^/wp-cron.php",
"^/wp-login.php",
"^/wp-activate.php",
"^/wp-mail.php",
"^\\?add-to-cart=",
"^\\?wc-api=",
"^/preview=",
"^/\\.well-known/acme-challenge/"
]
}