2018-05-29 11:52:17 +02: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 19:19:36 +02: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"
|
|
|
|
|
2018-05-29 11:52:17 +02:00
|
|
|
[cache]
|
|
|
|
|
2019-02-06 18:52:44 +01:00
|
|
|
; Defines the cache type used by RSS-Bridge
|
|
|
|
; "file" = FileCache (default)
|
|
|
|
type = "file"
|
|
|
|
|
2018-05-29 11:52:17 +02:00
|
|
|
; Allow users to specify custom timeout for specific requests.
|
|
|
|
; true = enabled
|
|
|
|
; false = disabled (default)
|
|
|
|
custom_timeout = false
|
|
|
|
|
2018-11-05 10:46:44 +01: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 = ""
|
|
|
|
|
2018-05-29 11:52:17 +02: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 19:09:41 +02: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 20:12:43 +02:00
|
|
|
|
|
|
|
; --- Cache specific configuration ---------------------------------------------
|
|
|
|
|
|
|
|
[SQLiteCache]
|
|
|
|
file = "cache.sqlite"
|
2019-05-03 11:56:07 +02:00
|
|
|
|
|
|
|
[MemcachedCache]
|
|
|
|
host = "localhost"
|
|
|
|
port = 11211
|