nalipaz / lando-acquia-multisite-recipe

A recipe for Lando to replicate an Acquia multisite install
27 stars 6 forks source link

Issue with drupal8 blt multi site #2

Closed sharique closed 7 months ago

sharique commented 5 years ago

I created a site using blt and followed official docs(https://blt.readthedocs.io/en/9.x/multisite/) to create multisite. But second site (ads2.lndo.site ) showing 404. Here is lando.yml file, can you tell me what I've doing wrong?


name: adstestmulti
recipe: drupal8
config:
  webroot: docroot
  appserver:
tooling:
  blt:
    service: appserver
    cmd: /usr/bin/blt
proxy:
  appserver:
    - adstestmulti.lndo.site
    - ads2.lndo.site 
SerShevchyk commented 5 years ago

@sharique you use the wrong construction, try next

name: landomultisite
recipe: drupal8
config:
  framework: drupal8
  webroot: web
  php: 7.2
proxy:
  appserver:
    - es.test.lndo.site
    - uk.test.lndo.site
sharique commented 5 years ago

@Shefarik I want to add site like test2.lndo.site, test1.lndo.site, not the subdomain of the main site. Anyway, seems like my local lando setup is messed, yet to try your suggestion.