multiple Multisite installs on single IP?
-
Is anyone running multiple multisite installations running on a single IP address? I would like to set up several multisite installations, however, I only have one IP address at my disposal.
The catch – I want to use Donncha’s WordPress MU Domain Mapping plugin to map multiple domains per installation.
I want to set up groups of installations, so that each group will have its own separate database and admin rights. Each install would have multiple domains mapped to it. If one installation needs to be taken off-line (or breaks), then the other installs will still function.
any thoughts? is this possible?
I am using 3.0 RC2; I have the following lines in my wp-config.php:
define( 'WP_ALLOW_MULTISITE', true ); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'mysite1234example.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
my apache config is here (with wildcard):
<VirtualHost 192.168.0.0> ServerName mysite1234example.com ServerAlias www.mysite1234example.com ServerAlias *.mysite1234example.com DocumentRoot /storage/www/mysite1234example.com ServerAdmin webmaster@localhost LogLevel warn ErrorLog /storage/logs/mysite1234example.com/error_log CustomLog /storage/logs/mysite1234example.com/access_log combined ServerSignature Off <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /storage/www/mysite1234example.com> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> </VirtualHost>
and I have Matt’s line in for the wildcard DNS in my zone file here:
;wildcard dns and subdomain for wordpress multi site ;https://ma.tt/2003/10/wildcard-dns-and-sub-domains/ *. mysite1234example.com. 14400 IN A 192.168.0.0
- The topic ‘multiple Multisite installs on single IP?’ is closed to new replies.