mirror of
https://github.com/zedeus/nitter.git
synced 2024-10-31 22:08:50 +00:00
1ac389e7c7
* Update deps * Replace profile timeline with GraphQL endpoint * Update GraphQL endpoint versions * Use GraphQL for profile media tab * Fix UserByRestId request * Improve routing, fixes #814 * Fix token pool JSON * Deduplicate GraphQL timeline endpoints * Update list endpoints * Use GraphQL for list tweets * Remove debug leftover * Replace old pinned tweet endpoint with GraphQL * Validate tweet ID * Minor token handling fix * Hide US-only commerce cards * Update config example * Remove http pool and gzip from token pool * Support tombstoned tweets in threads * Retry GraphQL timeout errors * Remove unnecessary 401 retry * Remove broken timeout retry * Update karax, use new bool attribute feature * Update card test * Fix odd edgecase with broken retweets * Replace search endpoints, switch Bearer token * Only parse user search if it's a list * Fix quoted tweet crash * Fix empty search query handling * Fix invalid user search errors again
44 lines
1.8 KiB
Text
44 lines
1.8 KiB
Text
[Server]
|
|
hostname = "nitter.net" # for generating links, change this to your own domain/ip
|
|
title = "nitter"
|
|
address = "0.0.0.0"
|
|
port = 8080
|
|
https = false # disable to enable cookies when not using https
|
|
httpMaxConnections = 100
|
|
staticDir = "./public"
|
|
|
|
[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" # Change to "nitter-redis" if using docker-compose
|
|
redisPort = 6379
|
|
redisPassword = ""
|
|
redisConnections = 20 # minimum open connections in pool
|
|
redisMaxConnections = 30
|
|
# 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 = "secretkey" # random key for cryptographic signing of video urls
|
|
base64Media = false # use base64 encoding for proxied media urls
|
|
enableRSS = true # set this to false to disable RSS feeds
|
|
enableDebug = false # enable request logs and debug endpoints (/.tokens)
|
|
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 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
|
|
|
|
# Change default preferences here, see src/prefs_impl.nim for a complete list
|
|
[Preferences]
|
|
theme = "Nitter"
|
|
replaceTwitter = "nitter.net"
|
|
replaceYouTube = "piped.video"
|
|
replaceReddit = "teddit.net"
|
|
proxyVideos = true
|
|
hlsPlayback = false
|
|
infiniteScroll = false
|