Multiple wp domains one virtualhost config

neo7

New Member
#1
We switched to OLS, Is it possible to map several distinct wp domains to one vhost, can we configure to have a single virtual host config file for all WP sites (instead of separate virtualhost for each WP site, domain1, domain2 and so on). Here we need a generic Virtual Host file commonly served for all WP sites. Somewhat same to "name-based" virtual hosting on OLS (multiple names running on one IP address). Manipulating the configuration through command line.

Any help would be greatly appreciated, thank you!
 

Pong

Administrator
#2
You will need separate virtual host configuration file for each domain, however you can create a template yourself and copy over to make necessary change for the rest of the domains.

For one virtual host to contain multi -domain, you can also consider yourdomain.com/sub1/ first wordpress installation, yourdomain.com/sub2/ for second wordpress installation etc.
 

neo7

New Member
#3
Thanks for getting back,

I was not looking for the multi -domain configuration as sub folders but each distinct domains (domain1, domain2 and so on) . All sites are WP and is there is no way to create a catch-all config file for all hosts ?

With the detailed feature comparison between LS and OLS, under Apache Compatibility I see it supports "Reads Apache's configuration files directly"
https://www.litespeedtech.com/products/litespeed-web-server/editions

Screenshot_2020-09-03 OpenLiteSpeed vs LiteSpeed Enterprise - LiteSpeed Technologies(1).png
Please guide us how to "Read Apache's configuration files directly" in OLS
 

neo7

New Member
#5
As per the Mass Hosting feature - https://www.litespeedtech.com/solutions/mass-hosting

Build a High Availability Large Scale Mass Hosting Platform with LiteSpeed. Managed Through cPanel, Redis, or Rewrite Map Files.Support Rewrite Based, cPanel Clustering and High Availability with Redis.

"Redis, or Rewrite Map Files."
"Manage virtual hosts via rewrite rules and LiteSpeed Web Server"
"Account migration with a simple Redis record update"
"Best for shared hosting with minimum customization"

Can you please guide us how to do mass virtual hosting with "rewrite map files" ? As currently we're using rewrite rules to do mass virtual hosting under Apache with a single configuration.

We need similar single configuration with OLS, any help would be greatly appreciated, thank you!
 
Last edited:

neo7

New Member
#7
We created master virtualhost template, do we simply need to add add the directory block in the template file ? or is there any other way/option.
Code:
  <Directory "/var/www/vhosts">
    AllowOverride All
    Options SymLinksIfOwnerMatch FollowSymLinks
    Require all granted
  </Directory>

  <Directory "/etc/apache2/custom_files">
    AllowOverride None
    Require ip 127.0.0.1
  </Directory>

  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>
Thank you!
 

Pong

Administrator
#8
The above apache directives won't work for OLS. You will need to configure at OLS native virtual host configuration.
 
Top