Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/cloud/project/project-multi-sites.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ To configure a new web location:
```yaml
web:
locations:
"/":&app
"/": &app
# The public directory of the app, relative to its root.
root: "pub"
passthru: "/index.php"
Expand All @@ -98,7 +98,7 @@ To configure a new web location:
```yaml
web:
locations:
"/":&app
"/": &app
# The public directory of the app, relative to its root.
root: "pub"
passthru: "/index.php"
Expand Down Expand Up @@ -130,14 +130,14 @@ To configure a location with a different directory:
```yaml
web:
locations:
"/":&root
"/": &root
# The public directory of the app, relative to its root.
root: "pub"
passthru: "/index.php"
index:
- index.php
...
"/static":&static
"/static": &static
root: "pub/static"
```

Expand All @@ -146,7 +146,7 @@ To configure a location with a different directory:
```yaml
web:
locations:
"/":&root
"/": &root
# The public directory of the app, relative to its root.
root: "pub"
passthru: "/index.php"
Expand All @@ -156,7 +156,7 @@ To configure a location with a different directory:
"/media":
root: "pub/media"
...
"/static":&static
"/static": &static
root: "pub/static"
allow: true
scripts: false
Expand Down