Hei,

are there any plans porting this to Drupal 8 ?

Greets

Comments

yobottehg created an issue.

matthewv789’s picture

I don't believe you need a module to do this in Drupal 8 (at least to configure different hostnames for dev/test/prod or whatnot, though it will only respond to one per site).

You can add something like this to your settings.php or settings.local.php to override what's set in the database:

$config['language.negotiation']['url']['domains']['en'] = 'my-en-url.localhost';
$config['language.negotiation']['url']['domains']['de'] = 'my-de-url.localhost';
$config['language.negotiation']['url']['domains']['es'] = 'my-es-url.localhost';
$config['language.negotiation']['url']['domains']['fr'] = 'my-fr-url.localhost';