I tried a similar setup, including upgrading and downgrading OLS with the lsup command and switching between PHP versions, but I still haven't been able to reproduce the issue.
If the issue is still occurring, please send the issue to support@litespeedtech.com with this forum link appended for...
Could you provide an example of the full socket path that contains the .sock.<absurdly long numeric suffix>?
For example, something like:
**/tmp/lshttpd/example.com.sock.123456789**
I'd like to check the actual length and format of the generated socket path.
So far we haven't received any similar reports. Could you upgrade again? If the loading issue occurs again, please add your domain and your origin server's IP address to your hosts file so you can access the site directly, bypassing the CDN.
If the page still loads slowly or fails to load on an...
Has this happened before? Or is it a fresh setup? I'd check WP_HOME and WP_SITEURL first and see if they match. You could also use wp CLI command to disable plugins from the console temporarily to narrow down the issue.
I just set up Nginx as a proxy server, which works too.
stream {
upstream ols_http {
server 127.0.0.1:8080;
}
server {
listen 1180;
proxy_pass ols_http;
proxy_protocol on;
}
}
OLS:
tuning {
proxyProtocol 127.0.0.1, ::1
}...