Skip to content

Commit

Permalink
Update all docs to use /plugins prefix in links.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Feb 13, 2024
1 parent 454d1b9 commit eb88bad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Note that if the above config options are not enough, all Lando recipes can be f
## Choosing a php version
You can set `php` to any version that is available in our [php service](https://docs.lando.dev/php). However, you should consult the [Backdrop requirements](https://docs.backdropcms.org/documentation/system-requirements) to make sure that version is actually supported by Backdrop itself.
You can set `php` to any version that is available in our [php service](https://docs.lando.dev/plugins/php). However, you should consult the [Backdrop requirements](https://docs.backdropcms.org/documentation/system-requirements) to make sure that version is actually supported by Backdrop itself.

The [recipe config](https://docs.lando.dev/core/v3/recipes.html#config) to set the Backdrop recipe to use `php` version `5.5` is shown below:

Expand All @@ -55,7 +55,7 @@ config:

## Choosing a web server

By default, this recipe will be served by the default version of our [apache](https://docs.lando.dev/apache) service but you can also switch this to use [`nginx`](https://docs.lando.dev/nginx). We *highly recommend* you check out both the [apache](https://docs.lando.dev/apache) and [nginx](https://docs.lando.dev/nginx) services before you change the default `via`.
By default, this recipe will be served by the default version of our [apache](https://docs.lando.dev/plugins/apache) service but you can also switch this to use [`nginx`](https://docs.lando.dev/plugins/nginx). We *highly recommend* you check out both the [apache](https://docs.lando.dev/plugins/apache) and [nginx](https://docs.lando.dev/plugins/nginx) services before you change the default `via`.

#### With Apache (default)

Expand All @@ -75,9 +75,9 @@ config:

## Choosing a database backend

By default, this recipe will use the default version of our [mysql](https://docs.lando.dev/mysql) service as the database backend but you can also switch this to use [`mariadb`](https://docs.lando.dev/mariadb) instead. Note that you can also specify a version *as long as it is a version available for use with lando* for either `mysql` or `mariadb`.
By default, this recipe will use the default version of our [mysql](https://docs.lando.dev/plugins/mysql) service as the database backend but you can also switch this to use [`mariadb`](https://docs.lando.dev/plugins/mariadb) instead. Note that you can also specify a version *as long as it is a version available for use with lando* for either `mysql` or `mariadb`.

If you are unsure about how to configure the `database`, we *highly recommend* you check out both the [mysql](https://docs.lando.dev/mysql) and [mariadb](https://docs.lando.dev/mariadb) services before you change the default.
If you are unsure about how to configure the `database`, we *highly recommend* you check out both the [mysql](https://docs.lando.dev/plugins/mysql) and [mariadb](https://docs.lando.dev/plugins/mariadb) services before you change the default.

Also note that like the configuration of the `php` version, you should consult the [Backdrop requirements](https://docs.backdropcms.org/documentation/system-requirements) to make sure the `database` and `version` you select is actually supported by Backdrop itself.

Expand Down Expand Up @@ -135,7 +135,7 @@ You may need to override our [default Backdrop config](https://github.com/lando/

If you do this, you must use files that exist inside your application and express them relative to your project root as shown below:

Note that the default files may change based on how you set both `ssl` and `via`. Also note that the `vhosts` and `server` config will be either for `apache` or `nginx` depending on how you set `via`. We *highly recommend* you check out both the [apache](https://docs.lando.dev/apache/config.html) and [nginx](https://docs.lando.dev/nginx/config.html) if you plan to use a custom `vhosts` or `server` config.
Note that the default files may change based on how you set both `ssl` and `via`. Also note that the `vhosts` and `server` config will be either for `apache` or `nginx` depending on how you set `via`. We *highly recommend* you check out both the [apache](https://docs.lando.dev/plugins/apache/config.html) and [nginx](https://docs.lando.dev/plugins/nginx/config.html) if you plan to use a custom `vhosts` or `server` config.

**A hypothetical project**

Expand Down
4 changes: 2 additions & 2 deletions docs/tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ tooling:
## Using xdebug
This is just a passthrough option to the [xdebug setting](https://docs.lando.dev/php/config.html#using-xdebug) that exists on all our [php services](https://docs.lando.dev/php). The `tl;dr` is `xdebug: true` enables and configures the php xdebug extension and `xdebug: false` disables it.
This is just a passthrough option to the [xdebug setting](https://docs.lando.dev/plugins/php/config.html#using-xdebug) that exists on all our [php services](https://docs.lando.dev/plugins/php). The `tl;dr` is `xdebug: true` enables and configures the php xdebug extension and `xdebug: false` disables it.

```yaml
recipe: backdrop
config:
xdebug: true|false
```

However, for more information we recommend you consult the [php service documentation](https://docs.lando.dev/php).
However, for more information we recommend you consult the [php service documentation](https://docs.lando.dev/plugins/php).

## Importing Your Database

Expand Down

0 comments on commit eb88bad

Please sign in to comment.