summaryrefslogtreecommitdiff
path: root/config.default.ini.php
diff options
context:
space:
mode:
Diffstat (limited to 'config.default.ini.php')
-rw-r--r--config.default.ini.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/config.default.ini.php b/config.default.ini.php
index 2d6fca1..b7d4fba 100644
--- a/config.default.ini.php
+++ b/config.default.ini.php
@@ -4,8 +4,20 @@
; 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).
+[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"
+
[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)
@@ -48,3 +60,12 @@ 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"
+
+[MemcachedCache]
+host = "localhost"
+port = 11211