From 2f44b374eb232df695f283d7c739e4405cc751d8 Mon Sep 17 00:00:00 2001 From: Mathieu Bruyen Date: Sun, 21 Feb 2021 17:20:40 +0100 Subject: [PATCH] ttrss upgrade to 861a632ac7c283c55dfd947ed0152d9846fa2ac0 --- Dockerfile | 4 ++-- config.php | 24 ------------------------ 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/Dockerfile b/Dockerfile index 54c8c3e..17dee0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM nginx:1.19.6-alpine +FROM nginx:1.19.7-alpine RUN \ apk add --no-cache \ @@ -29,7 +29,7 @@ EXPOSE 80 443 RUN \ git clone https://git.tt-rss.org/fox/tt-rss.git /var/lib/tt-rss && \ cd /var/lib/tt-rss && \ - git checkout 82d3c653a73714d030e35b76d37d97c2af715432 + git checkout 861a632ac7c283c55dfd947ed0152d9846fa2ac0 WORKDIR /app COPY CHECKS /app/CHECKS diff --git a/config.php b/config.php index e4e3da0..e56f832 100644 --- a/config.php +++ b/config.php @@ -90,23 +90,6 @@ // intervals is disabled and all articles (which are not starred) // older than this amount of days are purged. - // *********************************** - // *** Self-registrations by users *** - // *********************************** - - define('ENABLE_REGISTRATION', false); - // Allow users to register themselves. Please be aware that allowing - // random people to access your tt-rss installation is a security risk - // and potentially might lead to data loss or server exploit. Disabled - // by default. - - define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom'); - // Email address to send new user notifications to. - - define('REG_MAX_USERS', 10); - // Maximum amount of users which will be allowed to register on this - // system. 0 - no limit. - // ********************************** // *** Cookies and login sessions *** // ********************************** @@ -140,13 +123,6 @@ define('CHECK_FOR_UPDATES', false); // Check for updates automatically if running Git version - define('ENABLE_GZIP_OUTPUT', false); - // Selectively gzip output to improve wire performance. This requires - // PHP Zlib extension on the server. - // Enabling this can break tt-rss in several httpd/php configurations, - // if you experience weird errors and tt-rss failing to start, blank pages - // after login, or content encoding errors, disable it. - define('PLUGINS', 'auth_internal, note'); // Comma-separated list of plugins to load automatically for all users. // System plugins have to be specified here. Please enable at least one