# Issue starting Lando with Bedrock

**URL:** https://discourse.roots.io/t/issue-starting-lando-with-bedrock/14871
**Category:** bedrock
**Created:** 2019-02-20T03:27:41Z
**Posts:** 5
**Showing post:** 3 of 5

## Post 3 by @wdeer — 2019-02-21T21:34:55Z

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](https://docs.devwithlando.io/config/security.html))

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.

---

_[View the full topic](https://discourse.roots.io/t/issue-starting-lando-with-bedrock/14871)._
