Fix nginx dependencies not found because apt not updated

This commit is contained in:
Pieter Dormaels
2018-11-15 15:58:53 +01:00
parent bf2850974e
commit 766906ed35

View File

@@ -209,7 +209,10 @@ A [Google Network Load Balancer](https://cloud.google.com/compute/docs/load-bala
Install a basic web server to handle HTTP health checks:
```
sudo apt-get install -y nginx
{
sudo apt-get update
sudo apt-get install -y nginx
}
```
```