|
2 years ago | |
---|---|---|
misc | 2 years ago | |
README.md | 2 years ago | |
image_proxy.php | 2 years ago | |
index.php | 2 years ago | |
search.php | 2 years ago |
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.
Make a PR to get added. CloudFlare is not allowed.
| Clearnet | TOR | Country |
|-|-|-|
| pinternet.ahwx.org | no | 🇳🇱 NL (Official Instance) |
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;
}
}