21 lines
844 B
YAML
21 lines
844 B
YAML
---
|
|
# defaults file for tt-rss
|
|
# Database user
|
|
ttrss_db_user: ttrss
|
|
# Database password, please change when using the role
|
|
ttrss_db_password: ttrss
|
|
# Database name
|
|
ttrss_db_name: ttrss
|
|
|
|
# Path to the folder, where Tiny Tiny RSS will be installed
|
|
ttrss_install_path: "/usr/share/nginx/html/tt-rss"
|
|
# URL PATH of the Tiny Tiny RSS installation, change only when you know what you do
|
|
ttrss_url_path: "http://{{ ansible_default_ipv4.address }}/{{ ttrss_install_path | basename }}/"
|
|
# Enable gzip out to improve wire performance, This requires PHP Zlib extension on the server
|
|
# Set to True or False
|
|
ttrss_enable_gzip: true
|
|
# Sets log destination for Tiny Tiny RSS
|
|
# syslog - logs to system log
|
|
# sql - logs to database, can be seen in Preferences -> System
|
|
# '' - uses PHP logging, usually the http server error log
|
|
ttrss_log_destination: "syslog" |