-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfeedpushr.env
82 lines (61 loc) · 2.15 KB
/
feedpushr.env
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
###
# Feedpushr configuration
###
# Authentication method, default is ".htpasswd"
# Password file for basic HTTP authentication.
# Issuer base URL for OpenID Connect authentication.
# Example: `/etc/feedpushr.htpasswd`
FP_AUTHN=.htpasswd
# Authorized username, default is "*" for all
# Example: `foo`
FP_AUTHORIZED_USERNAME=*
# Default UI client_id, default is "feedpushr-ui"
# Example: `my-feedpushr-client`
FP_CLIENT_ID=feedpushr-ui
# Cache retention duration, default is "72h"
FP_CACHE_RETENTION=72h
# Clear cache at service startup, default is "false"
# Should not be activated for production.
FP_CLEAR_CACHE=false
# Clear the configuration at service startup, default is "false"
# Should not be activated for production.
FP_CLEAR_CONFIG=false
# Database location, default is "boltdb://data.db"
FP_DB=boltdb://data.db
# Delay between aggregations, default is "1m"
# Examples: `30s`, `15m`, `1h`
FP_DELAY=1m
# Delay between deployment of each aggregator, default is "0s"
# Examples: `300ms`, `5s`
FP_FAN_OUT_DELAY=0s
# Provider used to search new RSS feeds, default is "rsssearchhub"
FP_EXPLORE_PROVIDER=default
# Import an OPML file at bootstrap, disabled by default
# Example: "./my_subscriptions.opml"
FP_IMPORT=
# HTTP listen address, default is ":8080"
# Examples: `localhost:8080` or `:8080` for all interfaces
FP_LISTEN_ADDR=:8080
# Logging level, default is "info"
# Available levels are: `debug`, `info`, `warn` and `error`
FP_LOG_LEVEL=info
# Log output, STDOUT if not set
# Example: `/var/log/feedpushr.log`
FP_LOG_OUTPUT=
# Writes log using plain text format, default is "false"
FP_LOG_PRETTY=false
# Maximum number of feeds, default is 0 for unlimited
FP_MAX_NB_FEEDS=0
# Maximum number of outputs, default is 0 for unlimited
FP_MAX_NB_OUTPUTS=0
# Comma separated list of plugins to load, default is empty
# Example: `./plugins/feedpushr-twiter.so,./plugins/feedpushr-rake.so`
FP_PLUGINS=
# Public URL used for PSHB subscriptions, disabled by default
# Example: `https://example.org/feedpushr`
FP_PUBLIC_URL=
# Sentry DSN URL, disabled by default
# Example: `https://<id>:<key>@sentry.io/<project>`
FP_SENTRY_DSN=
# Aggregation timeout, default is 5s
FP_TIMEOUT=5s