fedilogue/fedilogger/config.jsonc.sample

71 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-12-02 18:56:25 -05:00
/*
* This is a jsonc file, NOT a json file.
* If you are using vim, I recommend this add-on:
* https://github.com/neoclide/jsonc.vim
*/
{
// Should pollers automatically crawl
"crawl": true,
2020-12-04 14:19:26 -05:00
/*
* Should pollers crawl .onion instances
* Requires a local tor proxy on 127.0.0.1:9050
2020-12-04 14:19:26 -05:00
*/
"crawlonion": false,
2020-12-02 18:56:25 -05:00
// Connect through the following proxies
"proxies": [
// {
// "host": "127.0.0.1",
// "port": 9050,
// "username": "",
// "password": ""
// }
2020-12-02 18:56:25 -05:00
],
// External accounts to follow blindspots
"externalaccounts": [
{
"username": "",
"password": "",
"endpoint": "",
"followlimit": 0
}
],
/*
* Mass follower configurations
* All mass followers specified here will have their
* keys generated in the poll/keys directory
*/
"massfollowers": [
{
2020-12-02 21:18:36 -05:00
"acct": "fedilogue@example.com",
2020-12-02 18:56:25 -05:00
"name": "Fedilogue Mass Follower",
"summary": "Profile description here",
"followingCount": 200,
"followlimit": -1
},
{
2020-12-02 21:18:36 -05:00
"acct": "fedilogue@example.xyz",
2020-12-02 18:56:25 -05:00
"name": "Fedilogue Mass Follower",
"summary": "Profile description here",
"followingCount": 200,
"followlimit": -1
}
],
"hostname": "myhostname",
2021-02-11 21:05:01 +00:00
/*
Log Level:
* 0 = No logs
* 1 = Reports every 30 seconds
* 2 = Errors
* 3 = Warnings
* 4 = New Connections
* 5 = Debugging
*/
"loglevel": 1
2020-12-02 18:56:25 -05:00
}