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

  1. Create a new directory:

    mkdir wallabag && cd wallabag/
  2. Create and open docker-compose.yml:

    nano docker-compose.yml
  3. Enter the following content:

    ...

    (Note: The content remains unchanged)

  4. 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

  1. Log in (Username: admin, Password: password):
  2. Change the login password:
  3. 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
  4. Configure the login password for the RSS reader:
  5. 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

Tag:Configure, RSS aggregation reading service, Tiny Tiny RSS

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)

Add a new comment.