A custom Pinterest frontend, made in PHP.
Find a file
2023-03-29 19:12:27 -04:00
misc remove unnecessary code 2023-03-29 19:06:05 -04:00
image_proxy.php it finally works WOOOOOOOOOOOO 2023-02-17 13:20:14 +01:00
index.php works now, image proxy needs to be fixed tho 2023-02-16 13:10:46 +01:00
README.md add revvy.de instance 2023-03-29 19:12:27 -04:00
search.php add a tag with href argument for clickable images 2023-02-23 00:45:24 +01:00

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: