A Full Checklist of LiteSpeed WebAdmin Settings

LiteSpeed WebAdmin Settings Checklist for WordPress + Redis

TL;DR: Enable LSCache, HTTP/3/QUIC, Brotli, and Redis Object Cache via /var/run/redis/redis.sock for a fast WordPress baseline. Use ESI for logged-in fragments (cart, admin bar), serve stale briefly during re-gen, and keep CSS/JS tweaks incremental. Verify wins with headers (x-litespeed-cache / x-redis-cache) and Lighthouse/Core Web Vitals. Need help locally? See our SEO Services or Get in Touch.

Table of Contents

About this Guide (LSWS Enterprise 6.3.4 + Redis)

This comprehensive checklist covers every major page in the LiteSpeed WebAdmin Console for LiteSpeed Web Server Enterprise 6.3.4, tuned for WordPress using a Redis UNIX socket at /var/run/redis/redis.sock. It’s written in a direct, concise voice but dives deep enough to help admins struggling with performance stabilize their stack and improve rankings—especially for businesses targeting SEO Springfield MO.

Legend: Items marked with red indicate the recommended configured values. Unmarked items are explained and usually left at defaults unless you have a special case.

Server Configuration (All Pages)

Tuning

Connection

Request/Response

Static File Delivery

GZIP/Brotli Compression

SSL Global

HTTP/3 (QUIC)

Cache (Server Level)

Security & Access Control

Listeners (HTTP/HTTPS) & QUIC

HTTPS Listener

HTTP Listener

Virtual Hosts (WordPress specifics)

PHP LSAPI & OPcache

Handler

Use LSAPI (not CGI/suPHP) for low overhead and native LiteSpeed integration.

OPcache (php.ini)

opcache.enable=1
opcache.memory_consumption=256
opcache.max_accelerated_files=20000
opcache.validate_timestamps=1
opcache.revalidate_freq=2
; Large sites:
; opcache.memory_consumption=512

OPcache removes repetitive PHP compilation and reduces TTFB spikes—great for UX and SEO Springfield MO results.

Redis Socket Setup & Validation

Use a UNIX socket for local Redis to remove TCP overhead. Ensure site users are in the redis group and that open_basedir includes /var/run/redis/ if enforced.

Quick Checks

# Socket present and accessible?
ls -l /var/run/redis/redis.sock
# Expect: srw-rw---- redis redis ...

# PING over socket
redis-cli -s /var/run/redis/redis.sock PING

# PHP test
php -r '$r=new Redis();var_dump($r->connect("/var/run/redis/redis.sock"));'

WordPress → LiteSpeed Cache → Cache → Object

Heads-up: If Object Cache won’t stay ON, remove competing wp-content/object-cache.php from other cache plugins, confirm the user is in redis group, and allow the socket path in open_basedir.

Verification, Logs & WP-CLI

HTTP Headers & HTTP/3

# Run twice; expect x-litespeed-cache: hit on the 2nd request
curl -I https://example.com | egrep -i 'x-(litespeed|redis)-cache|content-encoding'
curl -I https://example.com | egrep -i 'x-(litespeed|redis)-cache|content-encoding'

# HTTP/3 check (requires UDP/443 open)
curl -I --http3 https://example.com

WP-CLI Helpers

# Purge everything
wp litespeed-purge all

# Inspect LSCWP config (serialized string; line-break for readability)
wp option get litespeed-conf | sed 's/;/;\n/g' | less

Server Logs

Pro Tips

Key Takeaways

Sources & Further Reading

Want this configured for you? We’ll tune LiteSpeed WebAdmin, wire Redis sockets, and optimize Core Web Vitals.