No Description

Ahwx c633e79d59 add instructions 2 years ago
misc 99277ff1bc add 2nd image 2 years ago
README.md c633e79d59 add instructions 2 years ago
image_proxy.php 7453d7a40a it finally works WOOOOOOOOOOOO 2 years ago
index.php b20f3e9c0f works now, image proxy needs to be fixed tho 2 years ago
search.php c76fa755a3 search page optimizations 2 years ago

README.md

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 | Country | |-|-|-| | pinternet.ahwx.org | no | 🇳🇱 NL (Official Instance) |

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: