Skip to content

Programie/RSSFilter

Repository files navigation

RSS Filter

A simple proxy allowing to filter RSS feeds.

DockerHub GitHub release

Security notice

As of now, there is no authentication implementation available. Everyone able to access the application can access and modify your feeds!

You should not make this application reachable from the internet without configuring authentication on the webserver level (i.e. htaccess/htpasswd on Apache).

A proper authentication system might be implemented in the future.

Installation

Download the latest release and extract it into your webserver directory. Change the document root to the httpdocs directory.

Alternatively, you might want to use the Docker image from Docker Hub.

Create a new database and import the database schema.

Configuration

The configuration is done using environment variables which can be set in your webserver or by creating a .env file in the application root.

Example:

DATABASE_HOST="your-mysql-server.example.com"
DATABASE_NAME="your-database-name"
DATABASE_USERNAME="your-database-username"
DATABASE_PASSWORD="your-database-password"