ttrss upgrade to 861a632ac7c283c55dfd947ed0152d9846fa2ac0

This commit is contained in:
2021-02-21 17:20:40 +01:00
parent 37476dc557
commit 2f44b374eb
2 changed files with 2 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
FROM nginx:1.19.6-alpine FROM nginx:1.19.7-alpine
RUN \ RUN \
apk add --no-cache \ apk add --no-cache \
@@ -29,7 +29,7 @@ EXPOSE 80 443
RUN \ RUN \
git clone https://git.tt-rss.org/fox/tt-rss.git /var/lib/tt-rss && \ git clone https://git.tt-rss.org/fox/tt-rss.git /var/lib/tt-rss && \
cd /var/lib/tt-rss && \ cd /var/lib/tt-rss && \
git checkout 82d3c653a73714d030e35b76d37d97c2af715432 git checkout 861a632ac7c283c55dfd947ed0152d9846fa2ac0
WORKDIR /app WORKDIR /app
COPY CHECKS /app/CHECKS COPY CHECKS /app/CHECKS

View File

@@ -90,23 +90,6 @@
// intervals is disabled and all articles (which are not starred) // intervals is disabled and all articles (which are not starred)
// older than this amount of days are purged. // 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 *** // *** Cookies and login sessions ***
// ********************************** // **********************************
@@ -140,13 +123,6 @@
define('CHECK_FOR_UPDATES', false); define('CHECK_FOR_UPDATES', false);
// Check for updates automatically if running Git version // 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'); define('PLUGINS', 'auth_internal, note');
// Comma-separated list of plugins to load automatically for all users. // Comma-separated list of plugins to load automatically for all users.
// System plugins have to be specified here. Please enable at least one // System plugins have to be specified here. Please enable at least one