-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-sets.json
86 lines (86 loc) · 2.18 KB
/
config-sets.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
{
"production": {
"tiny_https_server": {
"domain": "localhost",
"port": 443,
"logDir": "./log/tiny-https-server",
"document_root": "./public/www",
"directory_index": "index.html",
"pathToError_404": "./error_404.html",
"pathToPrivkey": "./cert/localhost-key.pem",
"pathToCert": "./cert/localhost-cert.pem",
"subdomains": {
"test": {
"document_root": "./public/test",
"service_worker_version": "0.0.0",
"content_delivery_network_url": "",
"content_delivery_network_root": "",
"precache_urls": null
}
},
"cacheControl": {
"fileTypes": {
"webp": "max-age=2592000",
"bmp": "max-age=2592000",
"jpeg": "max-age=2592000",
"jpg": "max-age=2592000",
"png": "max-age=2592000",
"svg": "max-age=2592000",
"pdf": "max-age=2592000",
"woff2": "max-age=2592000",
"woff": "max-age=2592000",
"image/svg+xml": "max-age=2592000",
"html": "max-age=86400",
"css": "max-age=86400",
"js": "max-age=86400"
}
},
"setHeaders": {
"default": {}
},
"service_worker_version": "1.0.0",
"content_delivery_network_url": "",
"content_delivery_network_root": "",
"precache_urls": null,
"blacklist": {},
"blacklist_blocking_from": 3
},
"try_to_run": {
"retrying": 10,
"enabled": true
},
"log_report": {
"logDir": "./log/log-report",
"enabled": true,
"clear_on_startup": false,
"save_only_uncaughtException": true
},
"browse_url": {
"launch_url": "",
"enabled": true
}
},
"development": {
"tiny_https_server": {
"port": 80,
"subdomains": {
"test": {
"document_root": "./public/test"
}
}
},
"try_to_run": {
"enabled": false
},
"log_report": {
"logDir": "./log/log-report",
"enabled": true,
"clear_on_startup": true,
"save_only_uncaughtException": false
},
"browse_url": {
"launch_url": "https://localhost/",
"enabled": true
}
}
}