This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
services/roles/tinytinyrss/vars/main.yml

61 lines
1.4 KiB
YAML
Raw Normal View History

2023-12-13 01:43:15 +00:00
---
2023-12-14 01:20:13 +00:00
tinytinyrss_svc:
2023-12-13 01:43:15 +00:00
domain: rss.serguzim.me
2023-12-11 00:42:57 +00:00
name: tinytinyrss
port: 80
db:
host: "{{ postgres.host }}"
port: "{{ postgres.port }}"
database: tinytinyrss
user: "{{ vault_tinytinyrss.db.user }}"
pass: "{{ vault_tinytinyrss.db.pass }}"
2023-12-14 01:20:13 +00:00
tinytinyrss_env:
2023-12-11 00:42:57 +00:00
TTRSS_DB_TYPE: pgsql
TTRSS_DB_HOST: "{{ svc.db.host }}"
TTRSS_DB_NAME: "{{ svc.db.database }}"
TTRSS_DB_USER: "{{ svc.db.user }}"
TTRSS_DB_PASS: "{{ svc.db.pass }}"
TTRSS_SELF_URL_PATH: https://{{ svc.domain }}/tt-rss/
2023-12-17 01:25:20 +00:00
APP_UPSTREAM: tt-rss
# Workaround for this bug:
# could not open certificate file "/root/.postgresql/postgresql.crt": Permission denied
PGSSLCERT: /tmp/postgresql.crt
2023-12-14 01:20:13 +00:00
tinytinyrss_compose:
2023-12-11 00:42:57 +00:00
watchtower: false
image: cthulhoo/ttrss-web-nginx
volumes:
- app:/var/www/html:ro
file:
services:
2023-12-13 00:11:54 +00:00
app:
depends_on:
- tt-rss
2023-12-11 00:42:57 +00:00
tt-rss:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: always
env_file:
- service.env
volumes:
- app:/var/www/html
networks:
default:
2023-12-11 00:42:57 +00:00
updater:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: always
env_file:
- service.env
volumes:
- app:/var/www/html
depends_on:
- tt-rss
command: /opt/tt-rss/updater.sh
networks:
default:
2023-12-11 00:42:57 +00:00
volumes:
app: