= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
5 results
= 1024) { $event.preventDefault(); $wire.openPreview('install-certbot') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('install-certbot') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSL & Certbot
Install Certbot for Apache
sudo apt install -y certbot python3-certbot-apache
#ssl
#certbot
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('certbot-issue-apache') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('certbot-issue-apache') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSL & Certbot
Issue SSL certificate via Certbot (Apache)
sudo certbot --apache -d {{domain}}
#ssl
#certbot
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('certbot-test-renewal') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('certbot-test-renewal') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSL & Certbot
Test Certbot auto-renewal
sudo certbot renew --dry-run
#ssl
#certbot
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('ssl-check-expiry') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('ssl-check-expiry') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSL & Certbot
Check SSL Certificate Expiry Date
echo | openssl s_client -connect {{domain}}:443 2>/dev/null | openssl x509 -noou...
#ssl
#tls
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('ssl-certbot-wildcard') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('ssl-certbot-wildcard') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
SSL & Certbot
Issue Wildcard SSL Certificate
certbot certonly --manual --preferred-challenges=dns \
#ssl
#certbot
3 views
0 copies