mirror of
https://git.cloudron.io/cloudron/freshrss-app
synced 2025-09-18 03:09:08 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
d097f652f6 | ||
|
41c17e5c99 | ||
|
ebcc80e134 | ||
|
fde7bd0eb5 |
@@ -154,3 +154,6 @@
|
|||||||
* Allow feed to be actualized just after being truncated #2862
|
* Allow feed to be actualized just after being truncated #2862
|
||||||
* Fallback to showing a GUID when an article title is empty #2813
|
* Fallback to showing a GUID when an article title is empty #2813
|
||||||
|
|
||||||
|
[1.9.0]
|
||||||
|
* Use latest base image 2.0.0
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "RSS feed reader",
|
"tagline": "RSS feed reader",
|
||||||
"version": "1.8.0",
|
"version": "1.9.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -1,17 +1,19 @@
|
|||||||
This app packages FreshRSS <upstream>1.16.0</upstream>.
|
This app packages FreshRSS <upstream>1.16.0</upstream>.
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
FreshRSS is a self-hosted RSS feed aggregator such as Leed or Kriss Feed.
|
FreshRSS is a self-hosted RSS feed aggregator such as Leed or Kriss Feed.
|
||||||
|
|
||||||
It is at the same time lightweight, easy to work with, powerful and customizable.
|
It is at the same time lightweight, easy to work with, powerful and customizable.
|
||||||
|
|
||||||
It is a multi-user application with an anonymous reading mode. It supports PubSubHubbub for instant notifications from compatible Web sites. There is an API for (mobile) clients, and a Command-Line Interface. Finally, it supports extensions for further tuning.
|
It is a multi-user application with an anonymous reading mode. It supports PubSubHubbub for instant notifications from compatible Web sites. There is an API for (mobile) clients, and a Command-Line Interface. Finally, it supports extensions for further tuning.
|
||||||
|
|
||||||
### Extensions
|
## Extensions
|
||||||
FreshRSS supports further customizations by adding extensions on top of its core functionality.
|
FreshRSS supports further customizations by adding extensions on top of its core functionality.
|
||||||
See the [repository dedicated to those extensions](https://github.com/FreshRSS/Extensions).
|
See the [repository dedicated to those extensions](https://github.com/FreshRSS/Extensions).
|
||||||
|
|
||||||
|
|
||||||
### Compatible clients
|
## Compatible clients
|
||||||
Any client supporting a Google Reader-like API. Selection:
|
Any client supporting a Google Reader-like API. Selection:
|
||||||
|
|
||||||
* Android
|
* Android
|
||||||
@@ -19,3 +21,6 @@ Any client supporting a Google Reader-like API. Selection:
|
|||||||
* [EasyRSS](https://github.com/Alkarex/EasyRSS) (Open source, F-Droid)
|
* [EasyRSS](https://github.com/Alkarex/EasyRSS) (Open source, F-Droid)
|
||||||
* Linux
|
* Linux
|
||||||
* [FeedReader 2.0+](https://jangernert.github.io/FeedReader/) (Open source)
|
* [FeedReader 2.0+](https://jangernert.github.io/FeedReader/) (Open source)
|
||||||
|
* Mac/iOS
|
||||||
|
* [Reeder](https://reederapp.com/)
|
||||||
|
|
||||||
|
14
Dockerfile
14
Dockerfile
@@ -1,4 +1,4 @@
|
|||||||
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
||||||
|
|
||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
@@ -26,12 +26,12 @@ RUN a2enmod headers expires deflate mime dir rewrite setenvif
|
|||||||
|
|
||||||
RUN rm -rf /var/lib/php && ln -s /run/php /var/lib/php
|
RUN rm -rf /var/lib/php && ln -s /run/php /var/lib/php
|
||||||
|
|
||||||
RUN crudini --set /etc/php/7.2/apache2/php.ini PHP upload_max_filesize 64M && \
|
RUN crudini --set /etc/php/7.3/apache2/php.ini PHP upload_max_filesize 64M && \
|
||||||
crudini --set /etc/php/7.2/apache2/php.ini PHP post_max_size 64M && \
|
crudini --set /etc/php/7.3/apache2/php.ini PHP post_max_size 64M && \
|
||||||
crudini --set /etc/php/7.2/apache2/php.ini PHP memory_limit 64M && \
|
crudini --set /etc/php/7.3/apache2/php.ini PHP memory_limit 64M && \
|
||||||
crudini --set /etc/php/7.2/apache2/php.ini Session session.save_path /run/php/session && \
|
crudini --set /etc/php/7.3/apache2/php.ini Session session.save_path /run/php/session && \
|
||||||
crudini --set /etc/php/7.2/apache2/php.ini Session session.gc_probability 1 && \
|
crudini --set /etc/php/7.3/apache2/php.ini Session session.gc_probability 1 && \
|
||||||
crudini --set /etc/php/7.2/apache2/php.ini Session session.gc_divisor 100
|
crudini --set /etc/php/7.3/apache2/php.ini Session session.gc_divisor 100
|
||||||
|
|
||||||
ADD start.sh /app/code/start.sh
|
ADD start.sh /app/code/start.sh
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user