Root Access Daily
59 subscribers
137 photos
12 videos
147 links
Trench-level VPS tips for webmasters who SSH in and fix it themselves. Cheap droplet stacks, nginx tweaks, and the commands that saved our uptime at 3am.
Download Telegram
Three (or four) more for the webmaster & site monetization crowd:

@EdgeOfGloryCDN — True stories of sites that went global on a CDN -- the latency drops,…
@CacheCatch — The best caching reads, tools, and configs from around the web,…
@BackupOrDie — Strong opinions on backup strategy, because the people who skip it…
@LockdownLedger — Battle-tested security hardening checklists and SOPs for your sites.…
Follow the ones that fit — they're all part of the same network.
Forwarded from AFF.TOP - про арбитраж трафика и CPA рынок!
This media is not supported in your browser
VIEW IN TELEGRAM
В роликах Youtube теперь можно рекламировать товары Amazone

➡️ Читайте на сайте: https://aff.top/blog/v-rolikakh-youtube-teper-mozhno-reklamirovat-tovary-amazone

🧠 Ещё больше инсайтов → в канале AFF.top
Forwarded from AFF.TOP - про арбитраж трафика и CPA рынок!
This media is not supported in your browser
VIEW IN TELEGRAM
Google выпустил Gemini Omni 1.1 Flash

Google обновил Gemini Omni для генерации видео: модель умеет продолжать сцены с учётом до 10 секунд контекста и собирать ролик до 40 секунд, работать по референсу и делать переходы между кадрами. Главный вывод — инструмент стал практичнее для продакшена, а посекундная цена делает его заметно доступнее для тестов и рабочих задач.

➡️ Читайте на сайте: https://aff.top/blog/google-vypustil-gemini-omni-1-1-flash

🧠 Ещё больше инсайтов → в канале AFF.top
Add swap to a 1GB box without killing the SSD
This $5/mo box OOM-killed php-fpm twice. Fix in 4 commands:
fallocate -l 2G /swapfile && chmod 600 /swapfile
mkswap /swapfile && swapon /swapfile
— Add to /etc/fstab: /swapfile none swap sw 0 0
— Now tune so it doesn't thrash: sysctl vm.swappiness=10 and vm.vfs_cache_pressure=50 in /etc/sysctl.conf
Swappiness 10 means swap is an emergency net, not a crutch. RAM stays the priority, no constant disk writes. Try it tonight.
Forwarded from AFF.TOP - про арбитраж трафика и CPA рынок!
This media is not supported in your browser
VIEW IN TELEGRAM
Топ 5 PWA-сервисов для залива дейтинга

Статья показывает, что PWA выгодны не только для гемблы: в дейтинге они дают пуш-базу, больше траста и помогают маскировать оффер под бренд. Главный выбор зависит от цены инсталлов и теста GEO: для старта лучше бесплатные или дешёвые решения, а Progressier выделяется как самый практичный вариант для залива дейтинга.

➡️ Читайте на сайте: https://aff.top/blog/top-5-pwa-servisov-dlia-zaliva-deitinga

🧠 Ещё больше инсайтов → в канале AFF.top
🔥 Новый участник НеТОПа на AffPapa!
https://affpapa.org/netop

🏆 НеТОП на AffPapa — https://affpapa.org/netop/go/27?src=broadcast
Платный рейтинг индустрии: плати больше — стоишь выше. Займи место в топе за USDT.
💰 Ставка: $100 · сейчас #1 в рейтинге
fail2ban for SSH in 6 lines
My auth.log had 4k failed logins a day. Set this and it dropped to near zero:
apt install fail2ban -y
cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local
— In jail.local under [sshd]: enabled = true, maxretry = 3, bantime = 1h, findtime = 10m
— Then bantime.increment = true so repeat offenders get exponentially longer bans
systemctl restart fail2ban
Check the wall of shame: fail2ban-client status sshd. Try it tonight.
Compression checklist for nginx (do all 4)
Shaved 70% off my HTML/CSS payload with this in the http block:
gzip on; and gzip_comp_level 5; (6+ wastes CPU for nothing)
gzip_types text/css application/javascript application/json image/svg+xml; — html is gzipped by default, don't list it
gzip_min_length 256; so tiny files don't get bloated by headers
gzip_vary on; so proxies cache both versions
Reload, then curl with -H 'Accept-Encoding: gzip' -I and check the header. Try it tonight.
Forwarded from AFF.TOP - про арбитраж трафика и CPA рынок!
This media is not supported in your browser
VIEW IN TELEGRAM
Google отменил ручную пессимизацию в Еврозоне

Google перестал пессимизировать крупные новостники за паразитные страницы с казино и другими партнёрскими офферами в ЕЭЗ. Для арбитража вывод простой: в Европе схема с «пирогами» больше не даёт преимущества от траста основного домена, а Google впервые применяет разные правила по GEO под давлением регулятора.

➡️ Читайте на сайте: https://aff.top/blog/google-otmenil-ruchnuiu-pessimizaciiu-v-evrozone

🧠 Ещё больше инсайтов → в канале AFF.top
Size php-fpm so 1GB RAM doesn't crash
Most guides leave pm.max_children at default and the box dies under load. Do the math instead:
— Check one worker's real usage: ps --no-headers -o rss -C php-fpm8.3 | sort -n | tail -1 (say 60MB)
— Reserve ~400MB for nginx/mysql, leaves 600MB. 600 / 60 = 10 children max
— In your pool: pm = dynamic, pm.max_children = 10, pm.start_servers = 3, pm.max_spare_servers = 5
pm.max_requests = 500 to recycle leaky workers
Now a traffic spike queues instead of OOM-killing the box. Try it tonight.