Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Private front-end for Reddit

License

NotificationsYou must be signed in to change notification settings

redlib-org/redlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

screenshot


10-second pitch: Redlib is a private front-end likeInvidious but for Reddit. Browse the coldest takes ofr/unpopularopinion without beingtracked.

  • 🚀 Fast: written in Rust for blazing-fast speeds and memory safety
  • ☁️ Light: no JavaScript, no ads, no tracking, no bloat
  • 🕵 Private: all requests are proxied through the server, including media
  • 🔒 Secure: strongContent Security Policy prevents browser requests to Reddit

Table of Contents

  1. Redlib
  2. Instances
  3. About
  4. Comparison
  5. Deployment
  6. Configuration

Instances

Tip

🔗Want to automatically redirect Reddit links to Redlib? UseLibRedirect orPrivacy Redirect!

An up-to-date table of instances is available inMarkdown andmachine-readable JSON.

Both files are part of theredlib-instances repository. To contribute yourself-hosted instance to the list, see theredlib-instances README.

For information on instance uptime, see theUptime Robot status page.


About

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 asInvidious for YouTube,Nitter for Twitter, andBibliogram for Instagram.

Redlib currently implements most of Reddit's (signed-out) functionalities but still lacksa few features.

Built with

  • Rust - Programming language
  • Hyper - HTTP server and client
  • Rinja - Templating engine
  • Rustls - TLS library

How is it different from other Reddit front ends?

Teddit

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:

  • Redlib is themed around Reddit's redesign whereas Teddit appears to stick much closer to Reddit's old design. This may suit some users better as design is always subjective.
  • Redlib is written inRust for speed and memory safety. It usesHyper, a speedy and lightweight HTTP server/client implementation.

Libreddit

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:

  • OAuth token spoofing: To circumvent rate limits imposed by Reddit, OAuth token spoofing is used to mimick the most common iOS and Android clients. While spoofing both iOS and Android clients was explored, only the Android client was chosen due to content restrictions when using an anonymous iOS client.
  • Token refreshing: The authentication token is refreshed every 24 hours, emulating the behavior of the official Android app.
  • HTTP header mimicking: Efforts are made to send along as many of the official app's headers as possible to reduce the likelihood of Reddit's crackdown on Redlib's requests.

Comparison

This section outlines how Redlib compares to Reddit in terms of speed and privacy.

Speed

Last tested on January 12, 2024.

Results from Google PageSpeed Insights (Redlib Report,Reddit Report).

Performance metricRedlibReddit
Speed Index0.6s1.9s
Performance Score100%64%
Time to Interactive2.8s12.4s

Privacy

Reddit

Logging: According to Reddit'sprivacy policy, they "may [automatically] log information" including:

  • IP address
  • User-agent string
  • Browser type
  • Operating system
  • Referral URLs
  • Device information (e.g., device IDs)
  • Device settings
  • Pages visited
  • Links clicked
  • The requested URL
  • Search terms

Location: The same privacy policy goes on to describe that location data may be collected through the use of:

  • GPS (consensual)
  • Bluetooth (consensual)
  • Content associated with a location (consensual)
  • Your IP Address

Cookies: Reddit'scookie notice documents the array of cookies used by Reddit including/regarding:

  • Authentication
  • Functionality
  • Analytics and Performance
  • Advertising
  • Third-Party Cookies
  • Third-Party Site

Redlib

For transparency, I hope to describe all the ways Redlib handles user privacy.

Server

  • Logging: 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.

  • Cookies: 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.


Deployment

This section covers multiple ways of deploying Redlib. UsingDocker is recommended for production.

For configuration options, see theConfiguration section.

Docker

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.

Container images for Redlib are available atquay.io, with support foramd64,arm64, andarmv7 platforms.

Docker Compose

Important

These instructions assume theCompose plugin has already been installed. If not, follow theseinstructions on the Docker Docs for how to do so.

Copycompose.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

Docker CLI

Deploy Redlib:

docker pull quay.io/redlib/redlib:latestdocker 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:latestdocker 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 with127.0.0.1 so that Redlib only listens on the host portlocally. For example, if the host port for Redlib is8080, specify127.0.0.1:8080:8080.

Stream logs from the Redlib container:

docker logs -f redlib

Podman

Podman lets you run containerized applications in a rootless fashion. 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.

Container images for Redlib are available atquay.io, with support foramd64,arm64, andarmv7 platforms.

Quadlets

Important

These instructions assume that you are on a systemd based distro withpodman. If not, follow theseinstructions on podman's website for how to do so.It also assumes you have usedloginctl enable-linger <username> to enable the service to start for your user without logging in.

Copy theredlib.container and.env.example files to.config/containers/systemd/ and modify any relevant values (for example, the ports Redlib should listen on, renaming the .env file and editing its values, etc.).

To start Redlib either reboot or follow the instructions below:

Notify systemd of the new files

systemctl --user daemon-reload

Start the newly generated service file

systemctl --user start redlib.service

You can check the status of your container by using the following command:

systemctl --user status redlib.service

Binary

If you're on Linux, you can grab a binary fromthe newest release from GitHub.

Download the binary usingWget:

wget https://github.com/redlib-org/redlib/releases/download/v0.31.0/redlib

Make the binary executable and change its ownership toroot:

sudo chmod +x redlib&& sudo chown root:root redlib

Copy the binary to/usr/bin:

sudo cp ./redlib /usr/bin/redlib

Deploy Redlib to0.0.0.0:8080:

redlib

Important

If you're proxying Redlib through NGINX (seeissue #122), add

proxy_http_version1.1;

to your NGINX configuration file above yourproxy_pass line.

Running as a systemd service

You can use the systemd service available incontrib/redlib.service(install it on/etc/systemd/system/redlib.service).

That service can be optionally configured in terms of environment variables bycreating a file in/etc/redlib.conf. Use thecontrib/redlib.conf as atemplate. You can also add theREDLIB_DEFAULT__{X} settings explainedabove.

When "Proxying using NGINX" where the proxy is on the same machine, you shouldguarantee nginx waits for this service to start. Edit/etc/systemd/system/redlib.service.d/reverse-proxy.conf:

[Unit]Before=nginx.service

Building from source

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 redlibcargo run

Replit/Heroku

Warning

These are free hosting options, but they arenot private and will monitor server usage to prevent abuse. If you need a free and easy setup, this method may work best for you.

Run on Repl.itDeploy

launchd (macOS)

If you are on macOS, you can use thelaunchd service available incontrib/redlib.plist.

Install it withcp contrib/redlib.plist ~/Library/LaunchAgents/.

Load and start it withlaunchctl load ~/Library/LaunchAgents/redlib.plist.


Configuration

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 namedredlib.toml. For example:

REDLIB_DEFAULT_WIDE ="on"REDLIB_DEFAULT_USE_HLS ="on"

Note

If you're deploying Redlib using theDocker CLI or Docker Compose, environment variables can be defined in a.env file, allowing you to centralize and manage configuration in one place.

To configure Redlib using a.env file, copy the.env.example file to.env and edit it accordingly.

If using the Docker CLI, add --env-file .env to the command that runs Redlib. For example:

docker run -d --name redlib -p 8080:8080 --env-file .env quay.io/redlib/redlib:latest

If using Docker Compose, no changes are needed as the.env file is already referenced incompose.yaml via theenv_file: .env line.

Command Line Flags

Redlib supports the following command line flags:

  • -4,--ipv4-only: Listen on IPv4 only.
  • -6,--ipv6-only: Listen on IPv6 only.
  • -r,--redirect-https: Redirect all HTTP requests to HTTPS (no longer functional).
  • -a,--address <ADDRESS>: Sets address to listen on. Default is[::].
  • -p,--port <PORT>: Port to listen on. Default is8080.
  • -H,--hsts <EXPIRE_TIME>: HSTS header to tell browsers that this site should only be accessed over HTTPS. Default is604800.

Instance settings

Assign a default value for each instance-specific setting by passing environment variables to Redlib in the formatREDLIB_{X}. Replace{X} with the setting name (see list below) in capital letters.

NamePossible valuesDefault valueDescription
SFW_ONLY["on", "off"]offEnables SFW-only mode for the instance, i.e. all NSFW content is filtered.
BANNERString(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"]offDisables indexing of the instance by search engines.
PUSHSHIFT_FRONTENDStringundelete.pullpush.ioAllows the server to set the Pushshift frontend to be used with "removed" links.
PORTInteger 0-655358080Theinternal port Redlib listens on.
ENABLE_RSS["on", "off"]offEnables RSS feed generation.
FULL_URLString(empty)Allows for proper URLs (for now, only needed by RSS)

Default user settings

Assign a default value for each user-modifiable setting by passing environment variables to Redlib in the formatREDLIB_DEFAULT_{Y}. Replace{Y} with the setting name (see list below) in capital letters.

NamePossible valuesDefault value
THEME["system", "light", "dark", "black", "dracula", "nord", "laserwave", "violet", "gold", "rosebox", "gruvboxdark", "gruvboxlight", "tokyoNight", "icebergDark", "doomone", "libredditBlack", "libredditDark", "libredditLight"]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
BLUR_SPOILER["on", "off"]off
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
HIDE_SIDEBAR_AND_SUMMARY["on", "off"]off
FIXED_NAVBAR["on", "off"]on
REMOVE_DEFAULT_FEEDS["on", "off"]off

[8]ページ先頭

©2009-2025 Movatter.jp