nitter/nitter.example.conf

46 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-07-31 02:15:43 +02:00
[Server]
address = "0.0.0.0"
port = 8080
2020-06-01 02:26:04 +02:00
https = false # disable to enable cookies when not using https
httpMaxConnections = 100
2019-07-31 02:15:43 +02:00
staticDir = "./public"
title = "nitter"
hostname = "nitter.net"
2019-07-31 02:15:43 +02:00
[Cache]
2020-06-01 02:26:04 +02:00
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" # Change to "nitter-redis" if using docker-compose
2020-06-01 02:26:04 +02:00
redisPort = 6379
2021-12-28 06:04:34 +01:00
redisPassword = ""
2022-01-05 19:08:08 +01:00
redisConnections = 20 # connection pool size
2020-06-01 02:26:04 +02:00
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
2019-10-23 14:06:47 +02:00
[Config]
2022-01-05 19:08:08 +01:00
hmacKey = "secretkey" # random key for cryptographic signing of video urls
base64Media = false # use base64 encoding for proxied media urls
2021-12-28 06:21:22 +01:00
enableRSS = true # set this to false to disable RSS feeds
2022-01-05 19:08:08 +01:00
enableDebug = false # enable request logs and debug endpoints
proxy = "" # http/https url, SOCKS proxies are not supported
2021-09-30 18:03:07 +02:00
proxyAuth = ""
2020-06-01 02:26:04 +02:00
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.net"
2021-07-18 02:15:22 +02:00
replaceYouTube = "piped.kavin.rocks"
replaceReddit = "teddit.net"
replaceInstagram = ""
proxyVideos = true
hlsPlayback = false
infiniteScroll = false