Allow to use the site id as the key for mass updating micro site url per environment with drush command

Comments

flocondetoile created an issue. See original summary.

flocondetoile’s picture

Micro site URL can now be mass updating per environment using the site ID too.

Example of a setting :

$settings['micro_site_override_url'] = [
  'demo1.microdrupal.com' => [
    'https' => FALSE,
    'site_url' => 'dev-demo1.microdrupal.com',
  ],
  '3' => [
    'https' => FALSE,
    'site_url' => 'dev-demo2.microdrupal.com',
  ],
  'generic' => [
    'method' => 'subdomain',
    'pattern' => 'dev',
    'https' => FALSE,
  ],
  'one_page' => [
    'method' => 'tld',
    'pattern' => 'local',
    'https' => FALSE,
  ],
  'global' => [
    'method' => 'prefix',
    'pattern' => 'prefix',
    'https' => FALSE,
  ],
];
flocondetoile’s picture

crediting

  • flocondetoile committed e29f8bd on 8.x-1.x
    Issue #3099495 by flocondetoile: Allow to use the site id as the key for...
flocondetoile’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.