mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-24 18:36:59 +03:00
21d3bf3b60
- For consistency, functions should always return null on non-existing data. - WordPressPluginUpdateBridge appears to have used its own cache instance in the past. Obviously not used anymore. - Since $key can be anything, the cache implementation must ensure to assign the related data reliably; most commonly by serializing and hashing the key in an appropriate way. - Even though the default path for storage is perfectly fine, some people may want to use a different location. This is an example how a cache implementation is responsible for its requirements.
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
; <?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).
|
|
|
|
[cache]
|
|
|
|
; Defines the cache type used by RSS-Bridge
|
|
; "file" = FileCache (default)
|
|
type = "file"
|
|
|
|
; Allow users to specify custom timeout for specific requests.
|
|
; true = enabled
|
|
; false = disabled (default)
|
|
custom_timeout = false
|
|
|
|
[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 = ""
|
|
|
|
[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)
|
|
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 = ""
|
|
|
|
; --- Cache specific configuration ---------------------------------------------
|
|
|
|
[SQLiteCache]
|
|
file = "cache.sqlite"
|