Skip to content
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
4 changes: 2 additions & 2 deletions docs/guides/going-buildless/serving.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ Likewise, if you were to rename `index.html` to `main.html`, then `https://my-do

### Files Outside the Web Root

In the above examples, the server used the default web root `/var/www/html`, but we could also have configured it to use `/var/www/html/about`, e.g. by changing into that directory and starting a server from the command line
In the above examples, the server used the default web root `/var/www/html`, but we could also have configured it to use `/var/www/html/about`, e.g. by changing into that directory and starting a server from the command line:

```
cd /var/www/about
cd /var/www/html/about
http-server
```

Expand Down