1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-08 02:19:52 +02:00

Update 'Home'

fox 2021-03-16 08:12:40 +03:00
parent e8aeb17900
commit 2c9afea022

21
Home.md

@ -249,6 +249,27 @@ a2enmod proxy_http
You will need to set ``SELF_URL_PATH`` to a correct (i.e. visible from the outside) value in the ``.env`` file. You will need to set ``SELF_URL_PATH`` to a correct (i.e. visible from the outside) value in the ``.env`` file.
### I have internal web services tt-rss is complaining about (URL is invalid, loopback address, disallowed ports)
Put your local services on the same docker network with tt-rss, then access them by service (= host) names, i.e. `http://rss-bridge/`.
```yml
services:
rss-bridge:
....
networks:
default:
external:
name: ttrss-docker_default
```
If your service uses a non-standard (i.e. not 80 or 443) port, make an internal reverse proxy sidecar container for it.
See also:
- https://community.tt-rss.org/t/heads-up-several-vulnerabilities-fixed/3799/
- https://community.tt-rss.org/t/got-specified-url-seems-to-be-invalid-when-subscribing-to-an-internal-rss-feed/4024
### Backup and restore ### Backup and restore
Unless you have `backups` container disabled, stock configuration makes automatic tt-rss database backups once a week to a separate storage volume. Unless you have `backups` container disabled, stock configuration makes automatic tt-rss database backups once a week to a separate storage volume.