Tiny Tiny RSS ~ an excellent RSS aggregation reading service
Introduction:
Tiny Tiny RSS is a free open-source RSS aggregator reading service based on PHP. Awesome TTRSS offers a Tiny Tiny RSS container deployed using Docker. It enhances the user experience by offering a simple deployment method and some additional plugins.
Deployment Method:
Step One: Update Source
Ubuntu/Debian:
apt update -y && apt upgrade -y
Centos:
yum update -y && yum upgrade -y
Step Two: Install and Configure Docker
Install Docker:
curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh ./get-docker.sh
Start Docker:
sudo systemctl start docker
Set Docker to start automatically at boot:
sudo systemctl enable docker
Step Three: Create docker-compose.yml
Create a new directory:
mkdir wallabag && cd wallabag/
Create and open docker-compose.yml:
nano docker-compose.yml
Enter the following content:
...
(Note: The content remains unchanged)
- Save and exit:
Use Ctrl+X/Command+X
Step Four: Install and Run the Tiny Tiny RSS Container
docker compose up -d
After deployment, you can access "Tiny Tiny RSS" by visiting http://<your-ip>:80
(modify the port number to the one you entered).
Step Five: Reverse Proxy to Domain Name
Here, we use a very simple method: Origin Rules provided by Cloudflare.
Configuration is as follows:
Modify the Field to Hostname, Value to the complete domain you've chosen, and Rewrite to the port you just entered on the left.
Remember to resolve your subdomain to the server IP:
Use an A record, Name as domain prefix, Content as server address.
Step Six: Configure Tiny Tiny RSS
- Log in (Username: admin, Password: password):
- Change the login password:
- Open plugins:
It's recommended to enable plugins for full-text retrieval and simplified/traditional Chinese conversion. For more plugin introductions, see this article:
http://ttrss.henry.wang/zh/#%E6%8F%92%E4%BB%B6 - Configure the login password for the RSS reader:
- Use it in the RSS reader:
Server address:
Username is "admin", and the password is the login password for the RSS reader you just configured.
Related Links:
Tiny Tiny RSS: https://tt-rss.org
Awesome TTRSS Documentation: https://ttrss.henry.wang
Awesome TTRSS GitHub Address: https://github.com/HenryQW/Awesome-TTRSS
Original link:http://enblog.fuyiran.link/Technology/41.html
Copyright: All posts on this blog, unless otherwise stated, are published using theCC BY-NC-SA 4.0 license agreement. Please indicate the source for reprinting Fu Speaking (enblog.fuyiran.link)