From c1548e732d7472c40473b3d99858059333a05eae Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 31 Jul 2016 14:58:19 +0200 Subject: Remove Mozilla Persona login https://github.com/FreshRSS/FreshRSS/issues/1052 --- data/config.default.php | 1 - 1 file changed, 1 deletion(-) (limited to 'data/config.default.php') diff --git a/data/config.default.php b/data/config.default.php index cae15330f..be3fa8ae2 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -40,7 +40,6 @@ return array( # Login method: # `none` is without password and shows only the default user; # `form` is a conventional Web login form; - # `persona` is the email-based login by Mozilla; # `http_auth` is an access controled by the HTTP Web server (e.g. `/FreshRSS/p/i/.htaccess` for Apache) # if you use `http_auth`, remember to protect only `/FreshRSS/p/i/`, # and in particular not protect `/FreshRSS/p/api/` if you would like to use the API (different login system). -- cgit v1.2.3 From dccc2a84355149c702dbd2db7e560d38b0e05c01 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 7 Aug 2016 13:52:57 +0200 Subject: meta referrer origin https://github.com/FreshRSS/FreshRSS/issues/955 Tested in Firefox 48, Chrome 53, Edge 25 --- app/layout/layout.phtml | 2 ++ data/config.default.php | 3 +++ 2 files changed, 5 insertions(+) (limited to 'data/config.default.php') diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml index 6906fa05f..7fdc01241 100644 --- a/app/layout/layout.phtml +++ b/app/layout/layout.phtml @@ -41,6 +41,8 @@ $url_rss['a'] = 'rss'; ?> +allow_referrer) { ?> + allow_robots) { ?> diff --git a/data/config.default.php b/data/config.default.php index be3fa8ae2..af1482d03 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -66,6 +66,9 @@ return array( # Allow or not Web robots (e.g. search engines) in HTML headers. 'allow_robots' => false, + # If true does nothing, if false restricts HTTP Referer via: meta referrer origin + 'allow_referrer' => false, + 'limits' => array( # Duration in seconds of the SimplePie cache, -- cgit v1.2.3