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

Update page 'Home'

fox 2021-01-06 09:33:29 +00:00
parent 58cfbca08e
commit 5fe4d77166

14
Home.md

@ -14,7 +14,19 @@ Location is entirely cosmetic so I've decided that adding complexity to optional
You can use [docker-compose.override.yml](https://docs.docker.com/compose/extends/) You can use [docker-compose.override.yml](https://docs.docker.com/compose/extends/)
### Using SSL with Letsencrypt For example, to use a different postgres image:
```yml
version: '3'
services:
db:
image: postgres:13-alpine
```
### Using automatic SSL with Letsencrypt & Caddy (web-ssl container)
Note that Caddy v1 is no longer maintained. It's recommended to use an external web frontend to terminate SSL with.
- ``HTTP_HOST`` in ``.env`` should be set to a valid hostname (i.e. no localhost or IP address) - ``HTTP_HOST`` in ``.env`` should be set to a valid hostname (i.e. no localhost or IP address)
- comment out ``web`` container, uncomment ``web-ssl`` in ``docker-compose.yml`` - comment out ``web`` container, uncomment ``web-ssl`` in ``docker-compose.yml``