geraldwuhoo / omgur

Private front-end for Imgur. Mirror of https://gitlab.wuhoo.xyz/jerry/omgur.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

omgur

pipeline status

Omgur is a free and open-source alternative Imgur front-end focused on privacy.

Inspired by the Invidious, Nitter, and Teddit projects.

  • No JavaScript or ads
  • All requests go through the backend, client never talks to Imgur
  • Prevents Imgur from tracking your IP or JavaScript fingerprint
  • Lightweight
  • Self-hostable

Features roadmap

Far-future roadmap

  • Render comments on Imgur posts
  • Frontpage imgur url form
  • Public API endpoints

Installation

Docker

Using Docker and docker-compose:

docker-compose build
docker-compose up

Omgur should now be running at http://localhost:8080.

Prebuilt images are also available at registry.wuhoo.xyz/jerry/omgur:latest and registry.gitlab.com/geraldwuhoo/omgur:latest.

Manual

  1. Install Golang.
  2. (Optional) Install redis-server. Caches images from imgur – highly recommended.
  3. Clone and set up the repository.
git clone https://wuhoo.xyz/jerry/gerald/omgur
cd omgur
go mod init git.geraldwu.com/gerald/omgur
go mod tidy
go build -v -a ./cmd/omgur
export REDIS_HOST=localhost
redis-server
./omgur

Omgur should now be running at http://localhost:8080. It is possible to change the listening port with the OMGUR_LISTEN_PORT environment variable if you already have services using the default port 8080.

About

Private front-end for Imgur. Mirror of https://gitlab.wuhoo.xyz/jerry/omgur.

License:GNU Affero General Public License v3.0


Languages

Language:Go 92.7%Language:CSS 4.7%Language:Dockerfile 2.6%