add nitter-config role and enable it in site.yml
This commit is contained in:
parent
5761b49709
commit
269e6af917
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
# This role templates nitter.conf and copies it our target host
|
||||
|
||||
- name: Template and copy nitter.conf
|
||||
ansible.builtin.template:
|
||||
src: nitter.conf
|
||||
dest: "/home/{{ NITTER_USER }}/nitter/nitter.conf"
|
||||
become: true
|
||||
become_user: "{{ NITTER_USER }}"
|
|
@ -0,0 +1,40 @@
|
|||
[Server]
|
||||
address = "127.0.0.1"
|
||||
port = 8080
|
||||
https = false # disable to enable cookies when not using https
|
||||
httpMaxConnections = 100
|
||||
staticDir = "./public"
|
||||
title = "nitter"
|
||||
hostname = "{{ NITTER_DOMAIN }}"
|
||||
|
||||
[Cache]
|
||||
listMinutes = 240 # how long to cache list info (not the tweets, so keep it high)
|
||||
rssMinutes = 10 # how long to cache rss queries
|
||||
redisHost = "localhost"
|
||||
redisPort = 6379
|
||||
redisConnections = 20 # connection pool size
|
||||
redisMaxConnections = 30
|
||||
redisPassword = ""
|
||||
# max, new connections are opened when none are available, but if the pool size
|
||||
# goes above this, they're closed when released. don't worry about this unless
|
||||
# you receive tons of requests per second
|
||||
|
||||
[Config]
|
||||
hmacKey = "{{ NITTER_HMAC }}" # random key for cryptographic signing of video urls
|
||||
base64Media = false # use base64 encoding for proxied media urls
|
||||
tokenCount = 10
|
||||
# minimum amount of usable tokens. tokens are used to authorize API requests,
|
||||
# but they expire after ~1 hour, and have a limit of 187 requests.
|
||||
# the limit gets reset every 15 minutes, and the pool is filled up so there's
|
||||
# always at least $tokenCount usable tokens. again, only increase this if
|
||||
# you receive major bursts all the time
|
||||
|
||||
# Change default preferences here, see src/prefs_impl.nim for a complete list
|
||||
[Preferences]
|
||||
theme = "Nitter"
|
||||
replaceTwitter = "{{ NITTER_DOMAIN }}"
|
||||
replaceYouTube = "piped.kavin.rocks"
|
||||
replaceInstagram = ""
|
||||
proxyVideos = true
|
||||
hlsPlayback = false
|
||||
infiniteScroll = false
|
Loading…
Reference in New Issue