2018-05-29 12:52:17 +03:00
|
|
|
; <?php exit; ?> DO NOT REMOVE THIS LINE
|
|
|
|
|
|
|
|
; This file contains the default settings for RSS-Bridge. Do not change this
|
|
|
|
; file, it will be replaced on the next update of RSS-Bridge! You can specify
|
|
|
|
; your own configuration in 'config.ini.php' (copy this file).
|
|
|
|
|
2019-06-07 20:19:36 +03:00
|
|
|
[system]
|
|
|
|
|
|
|
|
; Defines the timezone used by RSS-Bridge
|
|
|
|
; Find a list of supported timezones at
|
|
|
|
; https://www.php.net/manual/en/timezones.php
|
|
|
|
; timezone = "UTC" (default)
|
|
|
|
timezone = "UTC"
|
|
|
|
|
2022-04-03 10:37:39 +03:00
|
|
|
[http]
|
2022-04-08 22:22:13 +03:00
|
|
|
timeout = 60
|
2022-07-31 04:58:07 +03:00
|
|
|
useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
|
2022-04-03 10:37:39 +03:00
|
|
|
|
2018-05-29 12:52:17 +03:00
|
|
|
[cache]
|
|
|
|
|
2019-02-06 20:52:44 +03:00
|
|
|
; Defines the cache type used by RSS-Bridge
|
|
|
|
; "file" = FileCache (default)
|
|
|
|
type = "file"
|
|
|
|
|
2018-05-29 12:52:17 +03:00
|
|
|
; Allow users to specify custom timeout for specific requests.
|
|
|
|
; true = enabled
|
|
|
|
; false = disabled (default)
|
|
|
|
custom_timeout = false
|
|
|
|
|
2018-11-05 12:46:44 +03:00
|
|
|
[admin]
|
|
|
|
; Advertise an email address where people can reach the administrator.
|
|
|
|
; This address is displayed on the main page, visible to everyone!
|
|
|
|
; "" = Disabled (default)
|
|
|
|
email = ""
|
|
|
|
|
2021-06-25 22:45:25 +03:00
|
|
|
; Show Donation information for bridges if available.
|
|
|
|
; This will display a 'Donate' link on the bridge view
|
|
|
|
; and a "Donate" button in the HTML view of the bridges feed.
|
|
|
|
; true = enabled (default)
|
|
|
|
; false = disabled
|
|
|
|
donations = true
|
|
|
|
|
2018-05-29 12:52:17 +03:00
|
|
|
[proxy]
|
|
|
|
|
|
|
|
; Sets the proxy url (i.e. "tcp://192.168.0.0:32")
|
|
|
|
; "" = Proxy disabled (default)
|
|
|
|
url = ""
|
|
|
|
|
|
|
|
; Sets the proxy name that is shown on the bridge instead of the proxy url.
|
|
|
|
; "" = Show proxy url
|
|
|
|
name = "Hidden proxy name"
|
|
|
|
|
|
|
|
; Allow users to disable proxy usage for specific requests.
|
|
|
|
; true = enabled
|
|
|
|
; false = disabled (default)
|
2018-06-27 20:09:41 +03:00
|
|
|
by_bridge = false
|
|
|
|
|
|
|
|
[authentication]
|
|
|
|
|
|
|
|
; Enables authentication for all requests to this RSS-Bridge instance.
|
|
|
|
;
|
|
|
|
; Warning: You'll have to upgrade existing feeds after enabling this option!
|
|
|
|
;
|
|
|
|
; true = enabled
|
|
|
|
; false = disabled (default)
|
|
|
|
enable = false
|
|
|
|
|
|
|
|
; The username for authentication. Insert this name when prompted for login.
|
|
|
|
username = ""
|
|
|
|
|
|
|
|
; The password for authentication. Insert this password when prompted for login.
|
|
|
|
; Use a strong password to prevent others from guessing your login!
|
|
|
|
password = ""
|
2019-04-29 21:12:43 +03:00
|
|
|
|
2019-10-31 20:40:51 +03:00
|
|
|
[error]
|
|
|
|
|
|
|
|
; Defines how error messages are returned by RSS-Bridge
|
|
|
|
;
|
|
|
|
; "feed" = As part of the feed (default)
|
|
|
|
; "http" = As HTTP error message
|
|
|
|
; "none" = No errors are reported
|
|
|
|
output = "feed"
|
|
|
|
|
2019-10-31 20:49:45 +03:00
|
|
|
; Defines how often an error must occur before it is reported to the user
|
|
|
|
report_limit = 1
|
|
|
|
|
2019-04-29 21:12:43 +03:00
|
|
|
; --- Cache specific configuration ---------------------------------------------
|
|
|
|
|
|
|
|
[SQLiteCache]
|
|
|
|
file = "cache.sqlite"
|
2019-05-03 12:56:07 +03:00
|
|
|
|
|
|
|
[MemcachedCache]
|
|
|
|
host = "localhost"
|
|
|
|
port = 11211
|