nitter/nitter.conf.tmpl

68 lines
2.4 KiB
Cheetah

[Server]
address = "0.0.0.0"
port = 8080
https = true # disable to enable cookies when not using https
httpMaxConnections = 100
staticDir = "./public"
title = {{ env "NITTER_TITLE" }}
hostname = {{ env "NITTER_HOSTNAME" }}
[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 = "redis"
redisPort = 6379
redisPassword = ""
redisConnections = 20 # connection pool size
redisMaxConnections = 30
# 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 = {{ secret "hmac_key" }} # random key for cryptographic signing of video urls
{{- if env "NITTER_BASE64_MEDIA" }}
base64Media = {{ env "NITTER_BASE64_MEDIA" }} # use base64 encoding for proxied media urls
{{- end }}
{{- if env "NITTER_ENABLE_RSS" }}
enableRSS = {{ env "NITTER_ENABLE_RSS" }} # set this to false to disable RSS feeds
{{- end }}
{{- if env "NITTER_ENABLE_DEBUG" }}
enableDebug = {{ env "NITTER_ENABLE_DEBUG" }} # enable request logs and debug endpoints
{{- end }}
proxy = "" # http/https url, SOCKS proxies are not supported
proxyAuth = ""
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]
{{- if env "NITTER_THEME" }}
theme = {{ env "NITTER_THEME" }}
{{- end }}
{{- if env "NITTER_REPLACE_TWITTER" }}
replaceTwitter = {{ env "NITTER_REPLACE_TWITTER" }}
{{- end }}
{{- if env "NITTER_REPLACE_YOUTUBE" }}
replaceYouTube = {{ env "NITTER_REPLACE_YOUTUBE" }}
{{- end }}
{{- if env "NITTER_REPLACE_REDDIT" }}
replaceReddit = {{ env "NITTER_REPLACE_REDDIT" }}
{{- end }}
{{- if env "NITTER_REPLACE_INSTAGRAM" }}
replaceInstagram = {{ env "NITTER_REPLACE_INSTAGRAM" }}
{{- end }}
{{- if env "NITTER_PROXY_VIDEOS" }}
proxyVideos = {{ env "NITTER_PROXY_VIDEOS" }}
{{- end }}
{{- if env "NITTER_HLS_PLAYBACK" }}
hlsPlayback = {{ env "NITTER_HLS_PLAYBACK" }}
{{- end }}
{{- if env "NITTER_INFINITE_SCROLL" }}
infiniteScroll = {{ env "NITTER_INFINITE_SCROLL" }}
{{- end }}