{"id":13336,"date":"2025-12-20T11:31:41","date_gmt":"2025-12-20T06:01:41","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=13336"},"modified":"2025-12-20T11:31:43","modified_gmt":"2025-12-20T06:01:43","slug":"how-to-setup-litespeed-on-linux-server","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/how-to-setup-litespeed-on-linux-server","title":{"rendered":"How to Setup LiteSpeed on Linux Server &#8211; Easy Guide"},"content":{"rendered":"\n<p><strong>To set up LiteSpeed on a Linux server<\/strong>, choose OpenLiteSpeed (free) or LiteSpeed Enterprise (licensed), install the LiteSpeed repository, install the web server and lsphp, open firewall ports, secure the WebAdmin console, create listeners and virtual hosts, enable HTTPS, and tune performance with LSCache, HTTP\/3 (QUIC), and compression.<\/p>\n\n\n\n<p>In this guide, I\u2019ll show you how to setup LiteSpeed on Linux Server step by step, covering OpenLiteSpeed and LiteSpeed Web Server Enterprise. You\u2019ll learn installation, firewall rules, WebAdmin configuration, PHP (LSAPI), HTTPS, WordPress optimization, and performance tuning\u2014using simple, production-safe instructions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-litespeed-and-which-edition-should-you-use\"><strong>What is LiteSpeed and Which Edition Should You Use?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/Create-LiteSpeed-on-Linux-Server.jpg\" alt=\"What Is LiteSpeed and Which Edition Should You Use?\" class=\"wp-image-13467\" srcset=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/Create-LiteSpeed-on-Linux-Server.jpg 1200w, https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/Create-LiteSpeed-on-Linux-Server-150x79.jpg 150w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>LiteSpeed is a high\u2011performance, drop\u2011in replacement for Apache with outstanding HTTP\/3, cache, and PHP LSAPI support. There are two editions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>OpenLiteSpeed (OLS)<\/strong>: Free, open-source, blazing fast, ideal for most sites, uses its own config format (rewrites compatible with most .htaccess rules). Default demo site listens on port 8088.<\/li>\n\n\n\n<li><strong>LiteSpeed Enterprise (LSWS)<\/strong>: Licensed, fully compatible with Apache config and .htaccess, integrates with cPanel\/Plesk\/DirectAdmin, adds advanced features and enterprise support.<\/li>\n<\/ul>\n\n\n\n<p>For WordPress, both work exceptionally well with the LiteSpeed Cache (LSCache) plugin. Use Enterprise if you need full Apache compatibility or panel integrations; use OLS for a cost\u2011effective, high\u2011performance stack.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"prerequisites\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Fresh Linux server (Ubuntu\/Debian or RHEL\/Rocky\/Alma\/CentOS 7\/8+)<\/li>\n\n\n\n<li>Root or sudo access<\/li>\n\n\n\n<li>A domain pointed to your server\u2019s IP<\/li>\n\n\n\n<li>Firewall access for ports 80, 443, and 7080 (WebAdmin)<\/li>\n\n\n\n<li>Optional: a valid LiteSpeed Enterprise license (for LSWS)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"install-litespeed-repositories\"><strong>Install LiteSpeed Repositories<\/strong><\/h2>\n\n\n\n<p>LiteSpeed provides a single bootstrap script to add official repositories for both OpenLiteSpeed and Enterprise plus lsphp packages.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Ubuntu\/Debian\nsudo apt update\nsudo apt install -y curl ca-certificates gnupg\ncurl -s https:\/\/repo.litespeed.sh | sudo bash\n\n# RHEL\/Rocky\/Alma\/CentOS\nsudo <a href=\"https:\/\/www.youstable.com\/blog\/install-yum-on-linux\/\">yum install<\/a> -y curl ca-certificates\ncurl -s https:\/\/repo.litespeed.sh | sudo bash<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"install-openlitespeed-free\"><strong>Install OpenLiteSpeed (Free)<\/strong><\/h2>\n\n\n\n<p>OpenLiteSpeed is perfect for most deployments. Install the server and PHP (LSAPI) packages:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Ubuntu\/Debian\nsudo apt <a href=\"https:\/\/www.youstable.com\/blog\/install-openlitespeed-on-directadmin\/\">install -y openlitespeed<\/a>\nsudo apt install -y lsphp82 lsphp82-common lsphp82-mysql lsphp82-opcache lsphp82-curl\n\n# RHEL\/Rocky\/Alma\/CentOS\nsudo yum install -y openlitespeed\nsudo yum install -y lsphp82 lsphp82-common lsphp82-mysqlnd lsphp82-opcache lsphp82-curl\n\n# Set the WebAdmin password\nsudo \/usr\/local\/lsws\/admin\/misc\/admpass.sh\n\n# Start and enable\nsudo \/usr\/local\/lsws\/bin\/lswsctrl start\nsudo systemctl enable lshttpd<\/code><\/pre>\n\n\n\n<p>OpenLiteSpeed\u2019s default demo site uses port 8088. The WebAdmin console listens on port 7080. Access it at https:\/\/YOUR_SERVER_IP:7080 and log in using the password you set.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"install-litespeed-enterprise-licensed\"><strong>Install LiteSpeed Enterprise (Licensed)<\/strong><\/h2>\n\n\n\n<p>Enterprise is a drop\u2011in Apache replacement with full .htaccess and panel support. After adding the repo, install and start it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Ubuntu\/Debian\nsudo apt install -y litespeed\n\n# RHEL\/Rocky\/Alma\/CentOS\nsudo yum install -y litespeed\n\n# Set WebAdmin password\nsudo \/usr\/local\/lsws\/admin\/misc\/admpass.sh\n\n# Start and enable\nsudo \/usr\/local\/lsws\/bin\/lswsctrl start\nsudo systemctl enable lshttpd<\/code><\/pre>\n\n\n\n<p>During or after installation you\u2019ll add your license key (trial or paid). WebAdmin is also on port 7080.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"open-firewall-ports-ufw-or-firewalld\"><strong>Open Firewall Ports (UFW or firewalld)<\/strong><\/h2>\n\n\n\n<p>Allow HTTP, HTTPS, and WebAdmin (7080). For HTTP\/3 enable UDP\/443 as well.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># UFW (Ubuntu)\nsudo ufw allow 80,443\/tcp\nsudo ufw allow 7080\/tcp\nsudo ufw allow 443\/udp   # for HTTP\/3\/QUIC\nsudo ufw reload\n\n# firewalld (RHEL family)\nsudo firewall-cmd --permanent --add-service=http\nsudo firewall-cmd --permanent --add-service=https\nsudo firewall-cmd --permanent --add-port=7080\/tcp\nsudo firewall-cmd --permanent --add-port=443\/udp  # for HTTP\/3\/QUIC\nsudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"secure-webadmin-and-basic-hardening\"><strong>Secure WebAdmin and Basic Hardening<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use a strong WebAdmin password and limit access to specific IPs via WebAdmin &gt; Configuration &gt; Security.<\/li>\n\n\n\n<li>Change default ports if required by policy.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.youstable.com\/blog\/disable-directory-browsing-listing-using-htaccess\/\">Disable or restrict directory<\/a> listing, and keep the server updated.<\/li>\n\n\n\n<li>Stop conflicting services on port 80\/443: <code>sudo systemctl disable --now apache2 httpd nginx<\/code>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"create-listeners-virtual-hosts-and-map-your-domain\"><strong>Create Listeners, Virtual Hosts, and Map Your Domain<\/strong><\/h2>\n\n\n\n<p>In WebAdmin, create production listeners on ports 80 (HTTP) and 443 (HTTPS) and map them to virtual hosts for each domain.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Listeners<\/strong>: Add listener \u201cHTTP\u201d on 0.0.0.0:80 and \u201cHTTPS\u201d on 0.0.0.0:443 (with certificates).<\/li>\n\n\n\n<li><strong>Virtual Host<\/strong>: Create a vHost with a doc root (e.g., \/var\/www\/example.com\/public), enable Rewrite Rules, and add an Access Log.<\/li>\n\n\n\n<li><strong>Map<\/strong>: Under each listener, add a Virtual Host Mapping for example.com and www.example.com.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"configure-php-with-lsapi-lsphp\"><strong>Configure PHP with LSAPI (lsphp)<\/strong><\/h2>\n\n\n\n<p>LSAPI gives excellent PHP performance. Install the targeted version (e.g., PHP 8.2 via lsphp82) and configure the External App and Script Handler:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>External App<\/strong>: Type \u201cLiteSpeed SAPI App\u201d, name \u201clsphp82\u201d, command: \/usr\/local\/lsws\/lsphp82\/bin\/lsphp<\/li>\n\n\n\n<li><strong>Script Handler<\/strong>: Suffix \u201cphp\u201d mapped to handler \u201clsphp82\u201d<\/li>\n\n\n\n<li><strong>Opcache<\/strong>: Ensure lsphp-opcache is installed and enabled for better performance.<\/li>\n<\/ul>\n\n\n\n<p>Restart LiteSpeed to apply changes.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/usr\/local\/lsws\/bin\/lswsctrl restart<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"enable-https-lets-encrypt\"><strong>Enable HTTPS (Let\u2019s Encrypt)<\/strong><\/h2>\n\n\n\n<p>Issue a certificate with Certbot (webroot method) or your preferred ACME client, then attach the cert\/key in the HTTPS listener.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Certbot (Ubuntu\/Debian)\nsudo apt install -y certbot\nsudo mkdir -p \/var\/www\/example.com\/public\nsudo certbot certonly --webroot -w \/var\/www\/example.com\/public -d example.com -d www.example.com\n\n# Paths to use in WebAdmin (Listener &gt; SSL)\n# Cert file:      \/etc\/letsencrypt\/live\/example.com\/fullchain.pem\n# <a href=\"https:\/\/www.youstable.com\/blog\/private-key-for-ssl-certificate\/\">Private key:<\/a>    \/etc\/letsencrypt\/live\/example.com\/privkey.pem\n\n# Reload after attaching certs\nsudo \/usr\/local\/lsws\/bin\/lswsctrl reload<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"deploy-a-test-site-or-wordpress\"><strong>Deploy a Test Site (or WordPress)<\/strong><\/h2>\n\n\n\n<p>Place an index.php in your document root to verify PHP is handled by lsphp.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo '&lt;?php phpinfo(); ?&gt;' | sudo tee \/var\/www\/example.com\/public\/index.php<\/code><\/pre>\n\n\n\n<p>For WordPress, create a database, download WordPress to your doc root, and install the LiteSpeed Cache <a href=\"https:\/\/www.youstable.com\/blog\/how-to-disable-wordpress-plugins\/\">plugin from the WordPress<\/a> plugin directory. In plugin settings, enable Cache, Object Cache (Redis if available), and QUIC.cloud CDN if desired.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"performance-tuning-essentials\"><strong>Performance Tuning Essentials<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>HTTP\/3 (QUIC)<\/strong>: Enable in WebAdmin (Server &gt; Tuning), and ensure UDP\/443 is open. Verify with <code>curl -I --http3 https:\/\/example.com<\/code>.<\/li>\n\n\n\n<li><strong>Compression<\/strong>: Enable Brotli and Gzip in WebAdmin (Server &gt; Tuning &gt; Compression).<\/li>\n\n\n\n<li><strong>LSCache<\/strong>: Use the LiteSpeed Cache plugin for WordPress. Enable ESI, Image Optimization, CSS\/JS combine\/defer where appropriate.<\/li>\n\n\n\n<li><strong>Workers\/Connections<\/strong>: Tune \u201cServer &gt; Tuning &gt; Connection\u201d and \u201cServer &gt; Tuning &gt; Request\/Response\u201d to match CPU\/RAM and concurrency.<\/li>\n\n\n\n<li><strong>Static File Handling<\/strong>: Serve static assets via LiteSpeed, set cache-control headers, and offload to a CDN for global reach.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"migrating-from-apache-or-nginx\"><strong>Migrating from Apache or Nginx<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Apache -&gt; LiteSpeed Enterprise<\/strong>: LSWS reads Apache configs and honors .htaccess. Switch services and test vhosts before cutting over.<\/li>\n\n\n\n<li><strong>Apache\/Nginx -&gt; OpenLiteSpeed<\/strong>: Recreate virtual hosts in OLS. Most rewrite rules work; test WordPress permalinks and redirects. Use WebAdmin Rewrite Testing tools.<\/li>\n\n\n\n<li><strong>Panel users<\/strong>: Consider LSWS with cPanel\/Plesk\/DirectAdmin for a streamlined migration path.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"service-management-and-logs\"><strong>Service Management and Logs<\/strong><\/h2>\n\n\n\n<p>Use lswsctrl or systemd to control the service, and check logs during setup and troubleshooting.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Control\nsudo \/usr\/local\/lsws\/bin\/lswsctrl status\nsudo \/usr\/local\/lsws\/bin\/lswsctrl start\nsudo \/usr\/local\/lsws\/bin\/lswsctrl restart\nsudo \/usr\/local\/lsws\/bin\/lswsctrl stop\n\n# Logs\nsudo tail -f \/usr\/local\/lsws\/logs\/error.log\nsudo tail -f \/usr\/local\/lsws\/logs\/access.log<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"troubleshooting-quick-wins\"><strong>Troubleshooting Quick Wins<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Admin panel not loading<\/strong>: Confirm 7080 is open and service is running; check error.log for SSL mismatch.<\/li>\n\n\n\n<li><strong>Port 80\/443 in use<\/strong>: Stop Apache\/Nginx: <code>sudo systemctl disable --now apache2 httpd nginx<\/code> then restart LiteSpeed.<\/li>\n\n\n\n<li><strong>WordPress permalinks break<\/strong>: Enable Rewrite in the vHost and ensure .htaccess is present. In OLS, apply changes and gracefully restart.<\/li>\n\n\n\n<li><strong>SSL not working<\/strong>: Ensure correct certificate\/key paths and fullchain usage, then reload LiteSpeed.<\/li>\n\n\n\n<li><strong>High CPU<\/strong>: Enable cache, OPCache, and review long\u2011running PHP scripts; consider upgrading to lsphp 8.2\/8.3.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"when-to-choose-managed-litespeed-hosting\"><strong>When to Choose Managed LiteSpeed Hosting<\/strong><\/h2>\n\n\n\n<p>If you want LiteSpeed pre\u2011installed, tuned for HTTP\/3, and paired with proactive security and backups, a managed plan saves time. At YouStable, our LiteSpeed\u2011optimized VPS and <a href=\"https:\/\/www.youstable.com\/blog\/secure-dedicated-server\/\">dedicated servers<\/a> ship with lsphp, LSCache, and hardened configs, so you can focus on your apps instead of server plumbing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs-how-to-setup-litespeed-on-linux-server\"><strong>FAQs: How to Setup LiteSpeed on Linux Server<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1765796435959\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"is-openlitespeed-free-and-production-ready\"><strong>Is OpenLiteSpeed free and production\u2011ready?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. OpenLiteSpeed is free, open\u2011source, and production\u2011grade. It delivers the same event\u2011driven architecture and LSAPI performance as Enterprise but uses its own config format and lacks some enterprise features. For panel integration and full Apache config compatibility, use LiteSpeed Enterprise.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1765796443266\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-enable-http-3-quic-in-litespeed\"><strong>How do I enable HTTP\/3 (QUIC) in LiteSpeed?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Open WebAdmin and enable HTTP\/3\/QUIC under Server &gt; Tuning. Open UDP port 443 on your firewall, attach a valid TLS certificate on the HTTPS listener, and reload LiteSpeed. Verify with: <code>curl -I --http3 https:\/\/yourdomain.com<\/code>.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1765796450899\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"can-i-use-litespeed-with-cpanel-or-plesk\"><strong>Can I use LiteSpeed with cPanel or Plesk?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. LiteSpeed Enterprise integrates with cPanel, Plesk, and DirectAdmin as an Apache drop\u2011in replacement. It reads Apache vhost configs and .htaccess, making migrations smooth and minimizing downtime.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1765796457818\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-switch-from-apache-to-litespeed-without-downtime\"><strong>How do I switch from Apache to LiteSpeed without downtime?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p><a href=\"https:\/\/www.youstable.com\/blog\/install-litespeed-on-linux\/\">Install LiteSpeed<\/a> Enterprise in parallel, validate virtual hosts and SSL in staging, then stop Apache and start LiteSpeed. Keep the same document roots and .htaccess. For OLS, recreate vHosts and test rewrites before the cutover, then change DNS\/ports during a maintenance window.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1765796465399\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"which-ports-does-litespeed-use-and-what-should-i-open\"><strong>Which ports does LiteSpeed use and what should I open?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Open TCP 80 (HTTP), TCP 443 (HTTPS), and TCP 7080 (WebAdmin). For HTTP\/3, also open UDP 443. OpenLiteSpeed\u2019s demo listener uses TCP 8088. Restrict WebAdmin to your IP for security.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Now you know how to setup LiteSpeed on Linux Server the right way: install OLS or Enterprise, secure WebAdmin, create listeners and vHosts, configure lsphp, enable HTTPS, and tune performance with HTTP\/3 and LSCache. If you prefer a managed, battle\u2011tested stack, YouStable\u2019s LiteSpeed\u2011optimized hosting is ready to launch your sites at peak speed.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To set up LiteSpeed on a Linux server, choose OpenLiteSpeed (free) or LiteSpeed Enterprise (licensed), install the LiteSpeed repository, install [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":15568,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-13336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/How-to-Setup-LiteSpeed-on-Linux-Server.jpg","author_info":{"display_name":"Prahlad Prajapati","author_link":"https:\/\/www.youstable.com\/blog\/author\/prahladblog"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/13336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=13336"}],"version-history":[{"count":6,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/13336\/revisions"}],"predecessor-version":[{"id":15569,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/13336\/revisions\/15569"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/15568"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=13336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=13336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=13336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}