= 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('install-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('install-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">
Apache
Install Apache HTTP Server
sudo apt install -y apache2 apache2-utils && sudo systemctl enable apache2 && su...
#apache
#install
6 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('apache-allow-firewall') }"
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('apache-allow-firewall') }"
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">
Apache
Open firewall for Apache (HTTP + HTTPS)
sudo ufw allow 'Apache Full' && sudo ufw status
#apache
#ufw
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('create-apache-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('create-apache-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">
Apache
Create Apache virtual host
sudo tee /etc/apache2/sites-available/{{site_slug}}.conf > /dev/null <<'EOF'
#apache
#vhost
5 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('apache-enable-common-modules') }"
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('apache-enable-common-modules') }"
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">
Apache
Enable common Apache modules
sudo a2enmod ssl rewrite proxy proxy_http headers && sudo systemctl restart apac...
#apache
#modules
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('apache-reverse-proxy') }"
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('apache-reverse-proxy') }"
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">
Apache
Apache reverse proxy to local app
sudo tee /etc/apache2/sites-available/{{site_slug}}.conf > /dev/null <<'EOF'
#apache
#proxy
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('apache-proxy-nodejs') }"
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('apache-proxy-nodejs') }"
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">
Apache
Apache Reverse Proxy to Node.js App
<VirtualHost *:80>
#apache
#proxy
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('apache-enable-modules') }"
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('apache-enable-modules') }"
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">
Apache
Enable Apache Modules
a2enmod {{modules}}
#apache
#modules
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('apache-redirect-https') }"
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('apache-redirect-https') }"
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">
Apache
Redirect HTTP to HTTPS in .htaccess
RewriteEngine On
#apache
#htaccess
3 views
0 copies