Some config is available also via sudo raspi-config
# update package list
sudo apt update -y
disney.demdex.net | |
sdk.iad-01.braze.com | |
sdk.iad-05.braze.com | |
sdk.iad-06.braze.com | |
disney-plus.net | |
prod-ripcut-delivery.disney-plus.net | |
prod-static.disney-plus.net | |
disney-vod-na-west-1.top.comcast.net | |
disneyplus.com | |
www.disneyplus.com |
nflxvideo.net | |
oca.nflxvideo.net | |
netflixtechblog.com | |
netflix.ca | |
netflix.com.au | |
netflixinvestor.com | |
netflixstudios.com | |
flxvpn.net | |
nflximg.net | |
netflix.com.edgesuite.net |
// This is just an example proxy.pac and is NOT to be used in production without changes to suit your environment. | |
// | |
// Some references about Proxy configuration below. | |
// https://wiki.squid-cache.org/SquidFaq/ConfiguringBrowsers | |
// https://learn.microsoft.com/en-us/troubleshoot/developer/browsers/connectivity-navigation/optimize-pac-performance | |
function FindProxyForURL(url, host) { | |
/* Normalize the URL for pattern matching */ | |
url = url.toLowerCase(); |
#EXTM3U | |
#RADIOBROWSERUUID:a25700ef-e952-4b73-8b4e-b92d938cb020 | |
#EXTINF:1, Newstalk ZB Auckland | |
https://ais-nzme.streamguys1.com/nz_002_aac | |
#RADIOBROWSERUUID:ce5e5e45-7b40-4aa8-9c1c-a9be0331b2ff | |
#EXTINF:1, Flava Auckland 95.8 FM | |
https://ais-nzme.streamguys1.com/nz_010_aac | |
#RADIOBROWSERUUID:9e220835-ca65-4570-94f6-f31f70d6542f |
## free up space on Unifi UDM-PRO when it has low disk space due to the pool directory filling up with 1GB .ubv files | |
## largest 20 files in /volume1 | |
# du -a /volume1 | sort -n -r | head -n 20 | |
rm /volume1/.srv/unifi-protect/video/pool/*.ubv |
# profile-load | |
$PROFILE = "$env:onedrive\Custom.PowerShell_profile.ps1" | |
& $profile |
sudo apt install docker.io docker-compose -y | |
mkdir docker-run && cd docker-run | |
wget https://gist.githubusercontent.com/SystemJargon/dcffbd115d7202df79f5cdfec3ae4eac/raw/e12467952a1eb1cf0edeba929b5e4bdc90b6be49/docker-compose.yml | |
sudo docker-compose up -d |
version: '3.7' | |
services: | |
portainer: | |
image: portainer/portainer-ce | |
restart: unless-stopped | |
volumes: | |
- "./portainer/data:/data" | |
- "/var/run/docker.sock:/var/run/docker.sock" | |
environment: |