mirror of
https://github.com/Ahwxorg/Binternet.git
synced 2026-03-11 08:54:37 +00:00
A custom Pinterest frontend, made in PHP.
| misc | ||
| image_proxy.php | ||
| index.php | ||
| README.md | ||
| search.php | ||
Pinternet
The main concept is that you don't want the random popups forcing you to log in, and you don't want a bunch of JS.
Showcase:
Features:
- API-less Pinterest image searching.
- Pinterest doesn't see the IP of the end user, only the instance IP;
- Image proxy (thanks to LibreX's code).
Instances:
Make a PR to get added. CloudFlare is not allowed.
| Clearnet | TOR | I2P | Country |
|---|---|---|---|
| pinternet.ahwx.org | no | no | 🇳🇱 NL (Official Instance) |
| pinternet.revvy.de | yes! | yes! | 🇨🇦 CA |
Install
Just clone it somewhere, make a reverse proxy rule and you're set. Example:
doas apt install php php-curl nginx nginx-common git
git clone https://git.ahwx.org/pinternet /var/www/html/pinternet
cd /var/www/html/pinternet
Example NGINX configuration:
server {
listen 80;
server_name pinternet.ahwx.org;
root /var/www/html/pinternet;
index index.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php-fpm.sock;
}
}
Credits:
- LibreX | https://femboy.hu - image proxy & quite a bit of other code.