Add note about freshrss_path_prefix being buggy
Related to https://github.com/mother-of-all-self-hosting/mash-playbook/issues/116
This commit is contained in:
parent
65fac6b430
commit
67f62f5d8a
1 changed files with 7 additions and 4 deletions
|
@ -6,8 +6,9 @@
|
||||||
|
|
||||||
This service requires the following other services:
|
This service requires the following other services:
|
||||||
|
|
||||||
- a [Traefik](traefik.md) reverse-proxy server
|
- 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.
|
- an optional [Postgres](postgres.md) database, but FreshRSS will default to [SQLite](https://www.sqlite.org/) if you don't have Postgres enabled.
|
||||||
|
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
@ -22,8 +23,7 @@ To enable this service, add the following configuration to your `vars.yml` file
|
||||||
|
|
||||||
freshrss_enabled: true
|
freshrss_enabled: true
|
||||||
|
|
||||||
freshrss_hostname: mash.example.com
|
freshrss_hostname: freshrss.example.com
|
||||||
freshrss_path_prefix: /freshrss
|
|
||||||
|
|
||||||
# Put a strong password below, generated with `pwgen -s 64 1` or in another way.
|
# 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.
|
# You will need to use this password in the setup wizard after installation.
|
||||||
|
@ -36,6 +36,9 @@ freshrss_database_password: ''
|
||||||
########################################################################
|
########################################################################
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**NOTE**: while FreshRSS can potentially be installed under a subpath (using the `freshrss_path_prefix` variable), this [doesn't currently work](https://github.com/mother-of-all-self-hosting/mash-playbook/issues/116) and will be fixed in the future. For now, you'd need to install it on its own dedicated hostname.
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
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).
|
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).
|
||||||
|
|
Loading…
Reference in a new issue