-
Notifications
You must be signed in to change notification settings - Fork 25
/
config.dist.json
60 lines (60 loc) · 1.13 KB
/
config.dist.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
{
"mysql": {
"database": "",
"user": "",
"password": "",
"host": "localhost",
"port": 3306,
"charset": "utf8mb4",
"max_idle_connections": 1000,
"max_open_connections": 100000
},
"server": {
"site_name": "万能采集器",
"host": "localhost",
"env": "production",
"log_level": "error",
"port": 8088
},
"collector": {
"error_times": 5,
"channels": 5,
"title_min_length": 6,
"content_min_length": 200,
"title_exclude": [
"关于我们"
],
"title_exclude_prefix": [
"NotFound"
],
"title_exclude_suffix": [
"网站"
],
"content_exclude": [
"版权声明"
],
"content_exclude_line": [
"更多精彩",
"字体"
]
},
"content": {
"auto_publish": 0,
"table_name": "fe_new_article",
"id_field": "id",
"title_field": "title",
"created_time_field": "add_time",
"keywords_field": "keywords",
"description_field": "description",
"author_field": "",
"views_field": "",
"content_table_name": "",
"content_id_field": "id",
"content_field": "content",
"remote_url": "",
"content_type": "urlencode",
"headers": null,
"cookies": null,
"extra_fields": null
}
}