2019-07-31 00:15:43 +00:00
|
|
|
[Server]
|
2023-04-21 12:41:30 +00:00
|
|
|
hostname = "nitter.net" # for generating links, change this to your own domain/ip
|
|
|
|
title = "nitter"
|
2019-07-31 00:15:43 +00:00
|
|
|
address = "0.0.0.0"
|
|
|
|
port = 8080
|
2020-06-01 00:26:04 +00:00
|
|
|
https = false # disable to enable cookies when not using https
|
2021-06-23 21:17:16 +00:00
|
|
|
httpMaxConnections = 100
|
2019-07-31 00:15:43 +00:00
|
|
|
staticDir = "./public"
|
|
|
|
|
|
|
|
[Cache]
|
2020-06-01 00:26:04 +00:00
|
|
|
listMinutes = 240 # how long to cache list info (not the tweets, so keep it high)
|
|
|
|
rssMinutes = 10 # how long to cache rss queries
|
2022-01-23 15:24:40 +00:00
|
|
|
redisHost = "localhost" # Change to "nitter-redis" if using docker-compose
|
2020-06-01 00:26:04 +00:00
|
|
|
redisPort = 6379
|
2021-12-28 05:04:34 +00:00
|
|
|
redisPassword = ""
|
2023-04-21 12:41:30 +00:00
|
|
|
redisConnections = 20 # minimum open connections in pool
|
2020-06-01 00:26:04 +00:00
|
|
|
redisMaxConnections = 30
|
2023-04-21 12:41:30 +00:00
|
|
|
# new connections are opened when none are available, but if the pool size
|
2020-06-01 00:26:04 +00:00
|
|
|
# goes above this, they're closed when released. don't worry about this unless
|
|
|
|
# you receive tons of requests per second
|
2019-10-23 12:06:47 +00:00
|
|
|
|
|
|
|
[Config]
|
2022-01-05 18:08:08 +00:00
|
|
|
hmacKey = "secretkey" # random key for cryptographic signing of video urls
|
|
|
|
base64Media = false # use base64 encoding for proxied media urls
|
2021-12-28 05:21:22 +00:00
|
|
|
enableRSS = true # set this to false to disable RSS feeds
|
2023-10-31 12:04:32 +00:00
|
|
|
enableDebug = false # enable request logs and debug endpoints (/.accounts)
|
2022-01-05 18:08:08 +00:00
|
|
|
proxy = "" # http/https url, SOCKS proxies are not supported
|
2021-09-30 16:03:07 +00:00
|
|
|
proxyAuth = ""
|
2020-06-01 00:26:04 +00:00
|
|
|
tokenCount = 10
|
|
|
|
# minimum amount of usable tokens. tokens are used to authorize API requests,
|
2023-04-21 12:41:30 +00:00
|
|
|
# but they expire after ~1 hour, and have a limit of 500 requests per endpoint.
|
|
|
|
# the limits reset every 15 minutes, and the pool is filled up so there's
|
|
|
|
# always at least `tokenCount` usable tokens. only increase this if you receive
|
|
|
|
# major bursts all the time and don't have a rate limiting setup via e.g. nginx
|
2020-05-08 00:48:47 +00:00
|
|
|
|
|
|
|
# Change default preferences here, see src/prefs_impl.nim for a complete list
|
|
|
|
[Preferences]
|
|
|
|
theme = "Nitter"
|
|
|
|
replaceTwitter = "nitter.net"
|
2022-11-19 02:47:29 +00:00
|
|
|
replaceYouTube = "piped.video"
|
2021-12-27 01:13:05 +00:00
|
|
|
replaceReddit = "teddit.net"
|
2020-05-08 00:48:47 +00:00
|
|
|
proxyVideos = true
|
|
|
|
hlsPlayback = false
|
|
|
|
infiniteScroll = false
|