Self-hosting nitter with docker-compose and nginx

1 · Christian · July 12, 2022, 10:08 a.m.
In this short guide, I wanted to document the few steps needed to have nitter running with docker-compose behind nginx. 1. Clone the repo git clone --depth 1 https://github.com/zedeus/nitter.git 2. Configure nitter Create a nitter.conf file in the root of the repo, by copying the example conf: cp nitter.example.conf nitter.conf In nitter.conf file, change the redisHost to nitter-redis Optionally, adapt the other settings, but for a bare setup, that’s the only change needed. 3. docker-compose set...