From 1fa3bd11aa0af9d82d08cfbcd54e557b7e504813 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sat, 24 Mar 2018 21:27:44 +0100 Subject: [PATCH] config: Add default configuration file --- config.default.ini.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config.default.ini.php diff --git a/config.default.ini.php b/config.default.ini.php new file mode 100644 index 00000000..650a5bb3 --- /dev/null +++ b/config.default.ini.php @@ -0,0 +1,27 @@ +; 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 of this file). + +[cache] + +; Allow users to specify a custom timeout for specific requests. +; true = enabled +; false = disabled (default) +custom_timeout = false + +[proxy] + +; Sets the prox 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 prox url +name = "Hidden proxy name" + +; Allow users to disable proxy usage for specific requests. +; true = enabled +; false = disabled (default) +by_bridge = false \ No newline at end of file