Search results

  1. H

    Fixing OpenLiteSpeed installation

    There's another issue that I could never fix. I'm unable to enable QUIC, From LiteSpeed Cache General Settings, requesting a domain key fails. It sends the request to this URL; which returns 401, not sure if that's normal...
  2. H

    Fixing OpenLiteSpeed installation

    woah that was it!! login page now pops up just like that
  3. H

    Fixing OpenLiteSpeed installation

    Spent a great deal of time trying to fix the blog; ended up deleting it and re-creating it (except the database), and eventually got it back online. Not sure what went wrong. The only thing I still cannot fix is OpenLiteSpeed control panel. Why docker? I got a whole bunch of websites and...
  4. H

    Fixing OpenLiteSpeed installation

    I just realized that one of my blogs is completely broken; looking to fix it. I have 2 blogs configured with Wordpress+OpenLiteSpeed docker. The first blog is working perfectly fine. The second blog is completely broken. The database and articles render fine; but there is none of the theme...
  5. H

    Docker/WordPress in Sub-Path Redirects to Root

    Following that guide is not giving me any better result, unfortunately. At this point the only issue I have is with activating QUIC.cloud; and probably got some issue regarding the API that I'm not using otherwise. Not huge deals but still.
  6. H

    Docker/WordPress in Sub-Path Redirects to Root

    I did find a solution here to host wordpress in a subfolder. Moved all files from "html" into "html/blog/", and added this .htaccess file into "html" <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^(www.)?example.com$ RewriteCond %{REQUEST_URI} !^/blog/ RewriteCond...
  7. H

    Docker/WordPress in Sub-Path Redirects to Root

    NGINX is on the VPS directly purely as a reverse proxy (and handling SSL certificates). OpenLiteSpeed runs WordPress in Docker. Here's the content of .htaccess. I disabled OLS Cache plugin for now. # BEGIN LSCACHE # END LSCACHE # BEGIN NON_LSCACHE # END NON_LSCACHE # BEGIN WordPress # The...
  8. H

    Docker/WordPress in Sub-Path Redirects to Root

    I installed WordPress+OpenLiteSpeed in Docker using this script, adapting it for my needs. I'm hosting the blog in '/blog' sub-path here. I added this to wp-config.php define('WP_HOME', 'https://www.shamanicattraction.com/blog/'); define('WP_SITEURL'...
Top