Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork265
Private front-end for Reddit
License
libreddit/libreddit
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
An alternative private front-end to Reddit
➡️ Rebranded toRedlib, where Reddit API workarounds were implemented and development is ongoing.
As of July 12th, 2023, Libreddit is currently not operational as Reddit's API changes, that were designed to kill third-party apps and content scrapers who don't paylarge fees, went into effect.Read the full announcement here.
10-second pitch: Libreddit is a portmanteau of "libre" (meaning freedom) and "Reddit". It 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
I appreciate any donations! Your support allows me to continue developing Libreddit.
Bitcoin:bc1qwyxjnafpu3gypcpgs025cw9wa7ryudtecmwa6y
Monero:45FJrEuFPtG2o7QZz2Nps77TbHD4sPqxViwbdyV9A6ktfHiWs47UngG5zXPcLoDXAc8taeuBgeNjfeprwgeXYXhN3C9tVSR
🔗Want to automatically redirect Reddit links to Libreddit? UseLibRedirect orPrivacy Redirect!
Follow this link for an up-to-date table of instances in Markdown format. This list is also available asa machine-readable JSON.
Both files are part of thelibreddit-instances repository. To contribute yourself-hosted instance to the list, see thelibreddit-instances README.
Find Libreddit on 💬Matrix, 🐋Docker,GitHub, and 🦊GitLab.
- Rust - Programming language
- Hyper - HTTP server and client
- Askama - Templating engine
- Rustls - TLS library
Libreddit hopes to provide an easier way to browse Reddit, without the ads, trackers, and bloat. Libreddit was inspired by other alternative front-ends to popular services such asInvidious for YouTube,Nitter for Twitter, andBibliogram for Instagram.
Libreddit currently implements most of Reddit's (signed-out) functionalities but still lacksa 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 Libreddit into an even more polished product.
If you are looking to compare, the biggest differences I have noticed are:
- Libreddit 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.
- Libreddit is written inRust for speed and memory safety. It usesHyper, a speedy and lightweight HTTP server/client implementation.
This section outlines how Libreddit compares to Reddit.
Lasted tested Nov 11, 2022.
Results from Google PageSpeed Insights (Libreddit Report,Reddit Report).
Libreddit | ||
---|---|---|
Requests | 60 | 83 |
Speed Index | 2.0s | 10.4s |
Time to Interactive | 2.8s | 12.4s |
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
For transparency, I hope to describe all the ways Libreddit handles user privacy.
Logging: In production (when running the binary, hosting with docker, or using the official instances), Libreddit logs nothing. When debugging (running from source without
--release
), Libreddit logs post IDs fetched to aid with troubleshooting.Cookies: Libreddit uses optional cookies to store any configured settings inthe settings menu. These are not cross-site cookies and the cookies hold no personal data.
The official instance is hosted athttps://libreddit.spike.codes.
Server: The official instance runs a production binary, and thus logs nothing.
DNS: 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.
Hosting: The official instance is hosted onReplit, 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.
Make sure Rust stable is installed along withcargo
, Rust's package manager.
cargo install libreddit
Deploy theDocker image of Libreddit:
docker pull libreddit/libredditdocker run -d --name libreddit -p 8080:8080 libreddit/libreddit
Deploy using a different port (in this case, port 80):
docker pull libreddit/libredditdocker run -d --name libreddit -p 80:8080 libreddit/libreddit
To deploy onarm64
platforms, simply replacelibreddit/libreddit
in the commands above withlibreddit/libreddit:arm
.
To deploy onarmv7
platforms, simply replacelibreddit/libreddit
in the commands above withlibreddit/libreddit:armv7
.
For ArchLinux users, Libreddit is available from the AUR aslibreddit-git
.
yay -S libreddit-git
For NetBSD users, Libreddit is available from the official repositories.
pkgin install libreddit
Or, if you prefer to build from source
cd /usr/pkgsrc/libredditmake install
If you're on Linux and none of these methods work for you, you can grab a Linux binary fromthe newest release.
WarningThese 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.
Once installed, deploy Libreddit to0.0.0.0:8080
by running:
libreddit
Assign a default value for each instance-specific setting by passing environment variables to Libreddit in the formatLIBREDDIT_{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 | www.unddit.com | Allows the server to set the Pushshift frontend to be used with "removed" links. |
Assign a default value for each user-modifiable setting by passing environment variables to Libreddit in the formatLIBREDDIT_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"] | 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 |
You can also configure Libreddit with a configuration file. An examplelibreddit.toml
can be found below:
LIBREDDIT_DEFAULT_WIDE ="on"LIBREDDIT_DEFAULT_USE_HLS ="on"
LIBREDDIT_DEFAULT_SHOW_NSFW=on libreddit
LIBREDDIT_DEFAULT_WIDE=on LIBREDDIT_DEFAULT_THEME=dark libreddit -r
NoteIf you'reproxying Libreddit through an NGINX Reverse Proxy, add
proxy_http_version1.1;to your NGINX configuration file above your
proxy_pass
line.
You can use the systemd service available incontrib/libreddit.service
(install it on/etc/systemd/system/libreddit.service
).
That service can be optionally configured in terms of environment variables bycreating a file in/etc/libreddit.conf
. Use thecontrib/libreddit.conf
as atemplate. You can also add theLIBREDDIT_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/libreddit.service.d/reverse-proxy.conf
:
[Unit]Before=nginx.service
git clone https://github.com/libreddit/libredditcd libredditcargo run
About
Private front-end for Reddit
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.