Issue starting Lando with Bedrock

Looks like you’ll also need to update the devUrl in config.json from “nginx.yoursite.internal” to “appserver_nginx.yoursite.internal

For myself it also started forcing an https connection which resulted in an error until I updated my config.json’s devUrl and proxyUrl to https:// (after trusing the lando cert)

my current config.json:

{
  "entry": {
    "main": [
      "./scripts/main.js",
      "./styles/main.scss"
    ],
    "customizer": [
      "./scripts/customizer.js"
    ]
  },
  "publicPath": "/app/themes/sage",
- "devUrl": "http://nginx.justiceforkevinbrame.internal",
+ "devUrl": "https://appserver_nginx.justiceforkevinbrame.internal",
- "proxyUrl": "http://localhost:3000",
+ "proxyUrl": "https://localhost:3000",
  "cacheBusting": "[name]_[hash:8]",
  "watch": [
    "app/**/*.php",
    "config/**/*.php",
    "resources/views/**/*.php"
  ]
}

All is working fine for me now.

3 Likes