lapis

lapis

理解以真实为本,但真实本身不会自动呈现

Building TinyTinyRSS - Building your own RSS to break the information cocoon

Building TinyTinyRss - Building your own RSS to break the information cocoon#

date: September 11, 2022
slug: 4
status: Published
tags: Technology
type: Post

Limited by my technical abilities and laziness, this article uses the docker method to build TTRss.

I. Required Software Environment#

  • Docker CE (providing docker environment)
  • Database (PostgreSQL/MuSOL)
  • TTRss

II. Formal Construction#

1. Install Docker#

curl https://get.docker.io/ | sh#Used for installing docker on overseas hosts

curl -sSL https://get.daocloud.io/docker | sh#Used for installing docker on domestic hosts

2. Install Database and TTRss#

docker run -d --name ttrssdb nornagon/postgres#Install database

docker run -d --link ttrssdb:db -p 80:80 -e SELF_URL_PATH=http://example.org/ttrss fischerman/docker-ttrss#Install ttrss
  • p 80:80: This parameter indicates that the 80 port of the application inside this container (after the colon) is mapped to the 80 port of the host (before the colon). If your host also needs to run other services on port 80 (such as a blog), you should change the value before the colon to an unused port. For example, p 8080:80 will enable port 8080 on the host.
  • e SELF_URL_PATH=http://example.org/ttrss: This parameter indicates that the Tiny Tiny RSS application can be accessed from http://example.org/ttrss. If you kept the default port settings in the previous step, simply replace the above URL with your host's IP address (or domain name resolved to that host), otherwise, further indicate the port used after the address, such as: http://xxx.xxx.xxx.xxx:8080

III. Usage#

After completing the above steps, access the specified URL in your browser to enter the Web interface of TinyTinyRss. The default administrator account for the system is admin, the password is password, remember to change it.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.