An alternative private front-end to Reddit, with its origins in Libreddit.

undefined10-second pitch: Redlib is a private front-end like Invidious but for Reddit. Browse the coldest takes of r/unpopularopinion without being tracked.
[!TIP]
đ Want to automatically redirect Reddit links to Redlib? Use LibRedirect or Privacy Redirect!undefined
An up-to-date table of instances is available in Markdown and machine-readable JSON.
Both files are part of the redlib-instances repository. To contribute your self-hosted instance to the list, see the redlib-instances README.
For information on instance uptime, see the Uptime Robot status page.
[!NOTE]
Find Redlib on đŹ Matrix, đ Quay.io, :octocat: GitHub, and đŠ GitLab.
Redlib hopes to provide an easier way to browse Reddit, without the ads, trackers, and bloat. Redlib was inspired by other alternative front-ends to popular services such as Invidious for YouTube, Nitter for Twitter, and Bibliogram for Instagram.
Redlib currently implements most of Redditâs (signed-out) functionalities but still lacks a few features.
Teddit is another awesome open source project designed to provide an alternative frontend to Reddit. There is no connection between the two, and youâre welcome to use whichever one you favor. Competition fosters innovation and Tedditâs release has motivated me to build Redlib into an even more polished product.
If you are looking to compare, the biggest differences I have noticed are:
While originating as a fork of Libreddit, the name âRedlibâ was adopted to avoid legal issues, as Reddit only allows the use of their name if structured as âXYZ For Redditâ.
Several technical improvements have also been made, including:
This section outlines how Redlib compares to Reddit in terms of speed and privacy.
Last tested on January 12, 2024.
Results from Google PageSpeed Insights (Redlib Report, Reddit Report).
| Performance metric | Redlib | |
|---|---|---|
| Speed Index | 0.6s | 1.9s |
| Performance Score | 100% | 64% |
| Time to Interactive | undefined2.8sundefined | undefined12.4sundefined |
undefinedLogging: According to Redditâs privacy policy, they âmay [automatically] log informationâ including:
undefinedLocation: The same privacy policy goes on to describe that location data may be collected through the use of:
undefinedCookies: Redditâs cookie notice documents the array of cookies used by Reddit including/regarding:
For transparency, I hope to describe all the ways Redlib handles user privacy.
undefinedLogging: In production (when running the binary, hosting with docker, or using the official instances), Redlib logs nothing. When debugging (running from source without --release), Redlib logs post IDs fetched to aid with troubleshooting.
undefinedCookies: Redlib uses optional cookies to store any configured settings in the settings menu. These are not cross-site cookies and the cookies hold no personal data.
The official instance is hosted at https://redlib.matthew.science.
undefinedServer: The official instance runs a production binary, and thus logs nothing.
undefinedDNS: The domain for the official instance uses Cloudflare as the DNS resolver. However, this site is not proxied through Cloudflare, and thus Cloudflare doesnât have access to user traffic.
undefinedHosting: The official instance is hosted on Replit, which monitors usage to prevent abuse. I can understand if this invalidates certain usersâ threat models, and therefore, self-hosting, using unofficial instances, and browsing through Tor are welcomed.
This section covers multiple ways of deploying Redlib. Using Docker is recommended for production.
For configuration options, see the Configuration section.
Docker lets you run containerized applications. Containers are loosely isolated environments that are lightweight and contain everything needed to run the application, so thereâs no need to rely on whatâs installed on the host.
Docker images for Redlib are available at quay.io, with support for amd64, arm64, and armv7 platforms.
[!IMPORTANT]
These instructions assume the Compose plugin has already been installed. If not, follow these instructions on the Docker Docs for how to do so.
Copy compose.yaml and modify any relevant values (for example, the ports Redlib should listen on).
Start Redlib in detached mode (running in the background):
docker compose up -d
Stream logs from the Redlib container:
docker logs -f redlib
[!IMPORTANT]
If deploying on:
- an
arm64platform, use thequay.io/redlib/redlib:latest-armimage instead.- an
armv7platform, use thequay.io/redlib/redlib:latest-armv7image instead.
Deploy Redlib:
docker pull quay.io/redlib/redlib:latest
docker run -d --name redlib -p 8080:8080 quay.io/redlib/redlib:latest
Deploy using a different port on the host (in this case, port 80):
docker pull quay.io/redlib/redlib:latest
docker run -d --name redlib -p 80:8080 quay.io/redlib/redlib:latest
If youâre using a reverse proxy in front of Redlib, prefix the port numbers with 127.0.0.1 so that Redlib only listens on the host port locally. For example, if the host port for Redlib is 8080, specify 127.0.0.1:8080:8080.
Stream logs from the Redlib container:
docker logs -f redlib
If youâre on Linux, you can grab a binary from the newest release from GitHub.
Download the binary using Wget:
wget https://github.com/redlib-org/redlib/releases/download/v0.31.0/redlib
Make the binary executable and change its ownership to root:
sudo chmod +x redlib && sudo chown root:root redlib
Copy the binary to /usr/bin:
sudo cp ./redlib /usr/bin/redlib
Deploy Redlib to 0.0.0.0:8080:
redlib
[!IMPORTANT]
If youâre proxying Redlib through NGINX (see issue #122), addproxy_http_version 1.1;to your NGINX configuration file above your
proxy_passline.
You can use the systemd service available in contrib/redlib.service
(install it on /etc/systemd/system/redlib.service).
That service can be optionally configured in terms of environment variables by
creating a file in /etc/redlib.conf. Use the contrib/redlib.conf as a
template. You can also add the REDLIB_DEFAULT__{X} settings explained
above.
When âProxying using NGINXâ where the proxy is on the same machine, you should
guarantee nginx waits for this service to start. Edit
/etc/systemd/system/redlib.service.d/reverse-proxy.conf:
[Unit]
Before=nginx.service
To deploy Redlib with changes not yet included in the latest release, you can build the application from source.
git clone https://github.com/redlib-org/redlib && cd redlib
cargo run
[!WARNING]
These are free hosting options, but they are not private and will monitor server usage to prevent abuse. If you need a free and easy setup, this method may work best for you.
If you are on macOS, you can use the launchd service available in contrib/redlib.plist.
Install it with cp contrib/redlib.plist ~/Library/LaunchAgents/.
Load and start it with launchctl load ~/Library/LaunchAgents/redlib.plist.
You can configure Redlib further using environment variables. For example:
REDLIB_DEFAULT_SHOW_NSFW=on redlib
REDLIB_DEFAULT_WIDE=on REDLIB_DEFAULT_THEME=dark redlib -r
You can also configure Redlib with a configuration file named redlib.toml. For example:
REDLIB_DEFAULT_WIDE = "on"
REDLIB_DEFAULT_USE_HLS = "on"
[!NOTE]
If youâre deploying Redlib using the Docker CLI or Docker Compose, environment variables can be defined in a.envfile, allowing you to centralize and manage configuration in one place.To configure Redlib using a
.envfile, copy the.env.examplefile to.envand edit it accordingly.If using the Docker CLI, add
--env-file .envto the command that runs Redlib. For example:docker run -d --name redlib -p 8080:8080 --env-file .env quay.io/redlib/redlib:latestIf using Docker Compose, no changes are needed as the
.envfile is already referenced incompose.yamlvia theenv_file: .envline.
Assign a default value for each instance-specific setting by passing environment variables to Redlib in the format REDLIB_{X}. Replace {X} with the setting name (see list below) in capital letters.
| Name | Possible values | Default value | Description |
|---|---|---|---|
SFW_ONLY |
["on", "off"] |
off |
Enables SFW-only mode for the instance, i.e. all NSFW content is filtered. |
BANNER |
String | (empty) | Allows the server to set a banner to be displayed. Currently this is displayed on the instance info page. |
ROBOTS_DISABLE_INDEXING |
["on", "off"] |
off |
Disables indexing of the instance by search engines. |
PUSHSHIFT_FRONTEND |
String | undelete.pullpush.io |
Allows the server to set the Pushshift frontend to be used with âremovedâ links. |
PORT |
Integer 0-65535 | 8080 |
The internal port Redlib listens on. |
Assign a default value for each user-modifiable setting by passing environment variables to Redlib in the format REDLIB_DEFAULT_{Y}. Replace {Y} with the setting name (see list below) in capital letters.
| Name | Possible values | Default value |
|---|---|---|
THEME |
["system", "light", "dark", "black", "dracula", "nord", "laserwave", "violet", "gold", "rosebox", "gruvboxdark", "gruvboxlight", "tokyoNight", "icebergDark"] |
system |
FRONT_PAGE |
["default", "popular", "all"] |
default |
LAYOUT |
["card", "clean", "compact"] |
card |
WIDE |
["on", "off"] |
off |
POST_SORT |
["hot", "new", "top", "rising", "controversial"] |
hot |
COMMENT_SORT |
["confidence", "top", "new", "controversial", "old"] |
confidence |
SHOW_NSFW |
["on", "off"] |
off |
BLUR_NSFW |
["on", "off"] |
off |
USE_HLS |
["on", "off"] |
off |
HIDE_HLS_NOTIFICATION |
["on", "off"] |
off |
AUTOPLAY_VIDEOS |
["on", "off"] |
off |
SUBSCRIPTIONS |
+-delimited list of subreddits (sub1+sub2+sub3+...) |
(none) |
HIDE_AWARDS |
["on", "off"] |
off |
DISABLE_VISIT_REDDIT_CONFIRMATION |
["on", "off"] |
off |
HIDE_SCORE |
["on", "off"] |
off |
FIXED_NAVBAR |
["on", "off"] |
on |
We use cookies
We use cookies to analyze traffic and improve your experience. You can accept or reject analytics cookies.