libreddit/README.md

290 lines
13 KiB
Markdown
Raw Normal View History

2020-10-25 21:48:44 +01:00
# Libreddit
> An alternative private front-end to Reddit
2020-10-25 21:48:44 +01:00
2021-03-18 17:47:10 +01:00
![screenshot](https://i.ibb.co/QYbqTQt/libreddit-rust.png)
2020-10-25 21:48:44 +01:00
2021-01-18 07:30:34 +01:00
---
**10 second pitch:** Libreddit is a portmanteau of "libre" (meaning freedom) and "Reddit". It is a private front-end like [Invidious](https://github.com/iv-org/invidious) but for Reddit. Browse the coldest takes of [r/unpopularopinion](https://libreddit.spike.codes/r/unpopularopinion) without being [tracked](#reddit).
2021-01-20 06:55:59 +01:00
- 🚀 Fast: written in Rust for blazing-fast speeds and memory safety
2021-01-18 07:30:34 +01:00
- ☁️ Light: no JavaScript, no ads, no tracking, no bloat
2020-11-23 05:22:51 +01:00
- 🕵 Private: all requests are proxied through the server, including media
2020-12-26 03:06:33 +01:00
- 🔒 Secure: strong [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) prevents browser requests to Reddit
2020-10-25 21:48:44 +01:00
2021-01-18 07:30:34 +01:00
---
2021-11-28 00:07:44 +01:00
I appreciate any donations! Your support allows me to continue developing Libreddit.
2021-02-22 06:45:56 +01:00
2022-03-13 20:11:39 +01:00
<a href="https://www.buymeacoffee.com/spikecodes" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 40px" ></a>
<a href="https://liberapay.com/spike/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg" style="height: 40px"></a>
2021-11-28 00:07:44 +01:00
**Bitcoin:** `bc1qwyxjnafpu3gypcpgs025cw9wa7ryudtecmwa6y`
2021-11-28 00:07:44 +01:00
**Monero:** `45FJrEuFPtG2o7QZz2Nps77TbHD4sPqxViwbdyV9A6ktfHiWs47UngG5zXPcLoDXAc8taeuBgeNjfeprwgeXYXhN3C9tVSR`
2021-02-22 06:45:56 +01:00
---
2021-01-18 07:30:34 +01:00
# Instances
2020-12-22 17:45:21 +01:00
2022-03-13 20:19:56 +01:00
🔗 **Want to automatically redirect Reddit links to Libreddit? Use [LibRedirect](https://github.com/libredirect/libredirect) or [Privacy Redirect](https://github.com/SimonBrazell/privacy-redirect)!**
2022-03-13 20:15:47 +01:00
[Follow this link](https://github.com/libreddit/libreddit-instances/blob/master/instances.md) for an up-to-date table of instances in markdown format. This list is also available as [a machine-readable JSON](https://github.com/libreddit/libreddit-instances/blob/master/instances.json).
Both files are part of the [libreddit-instances](https://github.com/libreddit/libreddit-instances) repository. To contribute your [self-hosted instance](#deployment) to the list, see the [libreddit-instances README](https://github.com/libreddit/libreddit-instances/blob/master/README.md).
2020-12-22 17:45:21 +01:00
2021-01-18 07:30:34 +01:00
---
# About
2020-12-05 18:53:41 +01:00
Find Libreddit on 💬 [Matrix](https://matrix.to/#/#libreddit:kde.org), 🐋 [Docker](https://hub.docker.com/r/libreddit/libreddit), :octocat: [GitHub](https://github.com/libreddit/libreddit), and 🦊 [GitLab](https://gitlab.com/libreddit/libreddit).
2021-01-20 06:55:59 +01:00
## Built with
- [Rust](https://www.rust-lang.org/) - Programming language
2021-03-18 17:53:03 +01:00
- [Hyper](https://github.com/hyperium/hyper) - HTTP server and client
2021-01-20 06:55:59 +01:00
- [Askama](https://github.com/djc/askama) - Templating engine
2021-03-18 17:53:03 +01:00
- [Rustls](https://github.com/ctz/rustls) - TLS library
2020-12-12 17:57:23 +01:00
2021-01-18 07:30:34 +01:00
## Info
2020-12-22 06:51:18 +01:00
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 as [Invidious](https://github.com/iv-org/invidious) for YouTube, [Nitter](https://github.com/zedeus/nitter) for Twitter, and [Bibliogram](https://sr.ht/~cadence/bibliogram/) for Instagram.
2020-12-05 18:53:41 +01:00
2022-11-06 04:24:16 +01:00
Libreddit currently implements most of Reddit's (signed-out) functionalities but still lacks [a few features](https://github.com/libreddit/libreddit/issues).
2020-12-05 18:53:41 +01:00
2021-01-18 07:30:34 +01:00
## How does it compare to Teddit?
2020-12-05 18:53:41 +01:00
2020-12-19 01:24:09 +01:00
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.
2020-12-05 18:53:41 +01:00
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.
2021-04-27 20:54:38 +02:00
- Libreddit is written in [Rust](https://www.rust-lang.org) for speed and memory safety. It uses [Hyper](https://hyper.rs), a speedy and lightweight HTTP server/client implementation.
2020-10-25 21:48:44 +01:00
2021-01-18 07:30:34 +01:00
---
# Comparison
2020-12-22 06:53:54 +01:00
This section outlines how Libreddit compares to Reddit.
2020-12-22 06:40:06 +01:00
2021-01-18 07:30:34 +01:00
## Speed
2020-12-22 06:40:06 +01:00
Lasted tested Nov 11, 2022.
2020-12-22 06:40:06 +01:00
Results from Google PageSpeed Insights ([Libreddit Report](https://pagespeed.web.dev/report?url=https%3A%2F%2Flibreddit.spike.codes%2F), [Reddit Report](https://pagespeed.web.dev/report?url=https://www.reddit.com)).
2020-12-22 06:40:06 +01:00
| | Libreddit | Reddit |
|------------------------|-------------|-----------|
| Requests | 60 | 83 |
| Speed Index | 2.0s | 10.4s |
| Time to Interactive | **2.8s** | **12.4s** |
2020-12-22 06:40:06 +01:00
2021-01-18 07:30:34 +01:00
## Privacy
2020-12-22 06:40:06 +01:00
2021-01-18 07:30:34 +01:00
### Reddit
2020-12-22 06:40:06 +01:00
2020-12-22 17:45:21 +01:00
**Logging:** According to Reddit's [privacy policy](https://www.redditinc.com/policies/privacy-policy), they "may [automatically] log information" including:
2020-12-22 06:40:06 +01:00
- 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:
2020-12-22 06:40:06 +01:00
- GPS (consensual)
- Bluetooth (consensual)
- Content associated with a location (consensual)
- Your IP Address
2020-12-22 17:45:21 +01:00
**Cookies:** Reddit's [cookie notice](https://www.redditinc.com/policies/cookies) documents the array of cookies used by Reddit including/regarding:
2020-12-22 06:40:06 +01:00
- Authentication
- Functionality
- Analytics and Performance
- Advertising
- Third-Party Cookies
- Third-Party Site
2021-01-18 07:30:34 +01:00
### Libreddit
2020-12-22 06:40:06 +01:00
2020-12-22 17:45:21 +01:00
For transparency, I hope to describe all the ways Libreddit handles user privacy.
2020-12-22 06:40:06 +01:00
#### Server
2020-12-22 06:40:06 +01:00
* **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.
2020-10-25 21:48:44 +01:00
* **Cookies:** Libreddit uses optional cookies to store any configured settings in [the settings menu](https://libreddit.spike.codes/settings). These are not cross-site cookies and the cookies hold no personal data.
2020-12-05 18:53:41 +01:00
#### Official instance (libreddit.spike.codes)
The official instance is hosted at https://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 on [Replit](https://replit.com/), 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.
2020-10-25 21:48:44 +01:00
2021-01-18 07:30:34 +01:00
---
# Installation
2020-11-23 04:21:07 +01:00
2021-01-20 06:55:59 +01:00
## 1) Cargo
2020-10-25 21:48:44 +01:00
Make sure Rust stable is installed along with `cargo`, Rust's package manager.
```
2020-10-26 05:19:04 +01:00
cargo install libreddit
2020-10-25 21:48:44 +01:00
```
2021-01-20 06:55:59 +01:00
## 2) Docker
2020-10-25 21:48:44 +01:00
Deploy the [Docker image](https://hub.docker.com/r/libreddit/libreddit) of Libreddit:
2020-10-25 21:48:44 +01:00
```
docker pull libreddit/libreddit
docker run -d --name libreddit -p 8080:8080 libreddit/libreddit
2020-10-25 21:48:44 +01:00
```
Deploy using a different port (in this case, port 80):
```
docker pull libreddit/libreddit
docker run -d --name libreddit -p 80:8080 libreddit/libreddit
2020-10-25 21:48:44 +01:00
```
To deploy on `arm64` platforms, simply replace `libreddit/libreddit` in the commands above with `libreddit/libreddit:arm`.
To deploy on `armv7` platforms, simply replace `libreddit/libreddit` in the commands above with `libreddit/libreddit:armv7`.
2021-01-20 06:55:59 +01:00
## 3) AUR
2020-10-25 21:48:44 +01:00
For ArchLinux users, Libreddit is available from the AUR as [`libreddit-git`](https://aur.archlinux.org/packages/libreddit-git).
2020-10-25 21:48:44 +01:00
```
yay -S libreddit-git
```
2023-02-26 09:13:56 +01:00
## 4) NetBSD/pkgsrc
2020-10-25 21:48:44 +01:00
2023-02-26 09:13:56 +01:00
For NetBSD users, Libreddit is available from the official repositories.
```
pkgin install libreddit
```
Or, if you prefer to build from source
```
cd /usr/pkgsrc/libreddit
make install
```
## 5) GitHub Releases
2022-11-06 04:24:16 +01:00
If you're on Linux and none of these methods work for you, you can grab a Linux binary from [the newest release](https://github.com/libreddit/libreddit/releases/latest).
2023-02-26 09:13:56 +01:00
## 6) Replit/Heroku/Glitch
2020-12-22 18:11:03 +01:00
2023-01-20 03:28:24 +01:00
> **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.
2021-09-19 23:37:31 +02:00
2022-11-06 04:24:16 +01:00
<a href="https://repl.it/github/libreddit/libreddit"><img src="https://repl.it/badge/github/libreddit/libreddit" alt="Run on Repl.it" height="32" /></a>
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/libreddit/libreddit)
[![Remix on Glitch](https://cdn.glitch.com/2703baf2-b643-4da7-ab91-7ee2a2d00b5b%2Fremix-button-v2.svg)](https://glitch.com/edit/#!/remix/libreddit)
2021-01-18 07:30:34 +01:00
---
# Deployment
Once installed, deploy Libreddit to `0.0.0.0:8080` by running:
```
libreddit
```
## Instance settings
2021-05-15 23:32:38 +02:00
Assign a default value for each instance-specific setting by passing environment variables to Libreddit in the format `LIBREDDIT_{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. |
## Default User Settings
Assign a default value for each user-modifiable setting by passing environment variables to Libreddit in the format `LIBREDDIT_DEFAULT_{Y}`. Replace `{Y}` with the setting name (see list below) in capital letters.
2021-05-15 23:32:38 +02:00
| 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`
2023-01-12 09:46:56 +01:00
| `DISABLE_VISIT_REDDIT_CONFIRMATION` | `["on", "off"]` | `off` |
2021-05-15 23:32:38 +02:00
You can also configure Libreddit with a configuration file. An example `libreddit.toml` can be found below:
```toml
LIBREDDIT_DEFAULT_WIDE = "on"
LIBREDDIT_DEFAULT_USE_HLS = "on"
```
2021-05-15 23:32:38 +02:00
### Examples
```bash
LIBREDDIT_DEFAULT_SHOW_NSFW=on libreddit
```
```bash
LIBREDDIT_DEFAULT_WIDE=on LIBREDDIT_DEFAULT_THEME=dark libreddit -r
```
2021-03-04 04:53:49 +01:00
## Proxying using NGINX
2023-01-20 03:28:24 +01:00
> **Note**
> If you're [proxying Libreddit through an NGINX Reverse Proxy](https://github.com/libreddit/libreddit/issues/122#issuecomment-782226853), add
> ```nginx
> proxy_http_version 1.1;
> ```
> to your NGINX configuration file above your `proxy_pass` line.
2021-03-04 04:53:49 +01:00
## systemd
2021-05-28 06:33:14 +02:00
You can use the systemd service available in `contrib/libreddit.service`
2021-05-28 06:33:14 +02:00
(install it on `/etc/systemd/system/libreddit.service`).
That service can be optionally configured in terms of environment variables by
creating a file in `/etc/libreddit.conf`. Use the `contrib/libreddit.conf` as a
template. You can also add the `LIBREDDIT_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/libreddit.service.d/reverse-proxy.conf`:
```conf
[Unit]
Before=nginx.service
```
2020-12-22 06:40:06 +01:00
## Building
2020-10-26 05:19:04 +01:00
```
2022-11-06 04:24:16 +01:00
git clone https://github.com/libreddit/libreddit
2020-10-26 05:19:04 +01:00
cd libreddit
cargo run
2020-11-25 04:27:12 +01:00
```