Skip to content

Commit

Permalink
#31: Document need to modify password when overriding a recipe's db s…
Browse files Browse the repository at this point in the history
…ervice.
  • Loading branch information
reynoldsalec committed Feb 20, 2024
1 parent 4570b1a commit b6c1e46
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,19 @@ services:
lando destroy -y && lando start
```

::: warning
By default, most Lando recipes set their default database credentials to the name of the recipe (ex: [`@lando/symfony`](https://github.com/lando/symfony) sets the database password to `symfony`). Since MSSQL requires an 8+ character password with special characters, if you are overriding the default database service on a recipe you will need to provide a different password:

```
name: symfony_mssql
recipe: symfony
services:
database:
creds:
password: L4ndoSymfony! #needs to be 8 characters minimum with special characters
```
:::

## Getting information

You can get connection and credential information about your mssql instance by running [`lando info`](https://docs.lando.dev/cli/info.html). It may also be worth checking out our [accessing services externally guide](https://docs.lando.dev/guides/external-access.html).
Expand Down Expand Up @@ -104,4 +117,4 @@ proxy:
- something.else.local
```

Lando proxying is actually pretty powerful so definitely check out [the rest](https://docs.lando.dev/core/v3/proxy.html) of its cool features.
Lando proxying is actually pretty powerful so definitely check out [the rest](https://docs.lando.dev/core/v3/proxy.html) of its cool features.

0 comments on commit b6c1e46

Please sign in to comment.