2023-10-10 17:06:11 +02:00
# FreshRSS
[FreshRSS ](https://freshrss.org ) is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customizable.
## Dependencies
This service requires the following other services:
2023-11-13 12:13:39 +01:00
- a [Traefik ](traefik.md ) reverse-proxy server
- an optional [Postgres ](postgres.md ) database, but FreshRSS will default to [SQLite ](https://www.sqlite.org/ ) if you don't have Postgres enabled.
2023-10-10 17:06:11 +02:00
## Configuration
To enable this service, add the following configuration to your `vars.yml` file and re-run the [installation ](../installing.md ) process:
```yaml
########################################################################
# #
# freshrss #
# #
########################################################################
freshrss_enabled: true
freshrss_hostname: mash.example.com
freshrss_path_prefix: /freshrss
2023-11-13 12:13:39 +01:00
# Put a strong password below, generated with `pwgen -s 64 1` or in another way.
# You will need to use this password in the setup wizard after installation.
freshrss_database_password: ''
2023-10-10 17:06:11 +02:00
########################################################################
# #
# /freshrss #
# #
########################################################################
```
## Usage
2023-11-13 12:13:39 +01:00
After installation, visit the configured path and complete the setup through the wizard. To do this you will need the database password from your `vars.yml` file (in the `freshrss_database_password` variable).
2023-10-10 17:06:11 +02:00
Feel free to follow FreshRSS [official documentation ](http://freshrss.github.io/FreshRSS/en/ ).