Skip to content

Instantly share code, notes, and snippets.

View RobThree's full-sized avatar
🤙
Being awesome

Rob Janssen RobThree

🤙
Being awesome
View GitHub Profile
@RobThree
RobThree / index.php
Last active August 2, 2023 12:56
Pihole OISD.nl caching proxy PHP script
<?php
$fileroot = './cache/'; // Where to store files
$ttl = 3600; // Number of seconds to cache a file
$fileext = '.gz'; // File extension
$lists = [ // Known lists
'small' => 'https://small.oisd.nl/',
'big' => 'https://big.oisd.nl/',
'nsfw' => 'https://nsfw.oisd.nl/'
];