README.md 1.6 KB

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: