= 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
8 results
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-install') }"
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('nginx-install') }"
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">
Nginx
Featured
Install Nginx
apt update
#nginx
#install
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-create-vhost') }"
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('nginx-create-vhost') }"
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">
Nginx
Featured
Create Nginx Virtual Host (Laravel)
server {
#nginx
#laravel
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-enable-site') }"
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('nginx-enable-site') }"
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">
Nginx
Enable Nginx Site
ln -s /etc/nginx/sites-available/{{site}} /etc/nginx/sites-enabled/
#nginx
#enable
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-test-reload') }"
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('nginx-test-reload') }"
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">
Nginx
Test & Reload Nginx Config
nginx -t && systemctl reload nginx
#nginx
#test
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-block-ip') }"
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('nginx-block-ip') }"
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">
Nginx
Block IP Address in Nginx
# Add inside server {} block:
#nginx
#block
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-rate-limit') }"
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('nginx-rate-limit') }"
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">
Nginx
Enable Nginx Rate Limiting
# In http {} block:
#nginx
#rate-limit
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-tail-logs') }"
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('nginx-tail-logs') }"
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">
Nginx
Tail Nginx Access & Error Logs
# Access log:
#nginx
#logs
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('nginx-ssl-vhost') }"
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('nginx-ssl-vhost') }"
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">
Nginx
Nginx HTTPS Server Block with SSL
server {
#nginx
#ssl
3 views
0 copies