zero-to-production/chapter03-1
Jes Bak Hansen f4ba849d91
Bind to all interfaces (#5)
* Bind to all interfaces

When running under WSL2, binding only to localhost via the 127.0.0.1 address
only lets you access the server from within WSL2 itself. It does not allow you
to access the server from Windows.

With this change, you can access the web server from the WSL ip address. You can
find your WSL ip address with

```
$ ip a | grep eth0
4: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    inet 192.168.161.12/20 brd 192.168.175.255 scope global eth0
```

* Add comment about binding to localhost

When running under WSL2, binding only to localhost via the 127.0.0.1 address
only lets you access the server from within WSL2 itself. It does not allow you
to access the server from Windows.

Add a comment explaining how to work around this, by binding to all
interfaces, instead of only to localhost.
2020-09-01 15:54:53 +01:00
..
migrations Chapter03, Part 1 (#2) 2020-08-25 22:19:53 +01:00
scripts Chapter 3 Part 1 - Patches (#4) 2020-08-31 02:05:21 +01:00
src Bind to all interfaces (#5) 2020-09-01 15:54:53 +01:00
tests/all Chapter 3 Part 1 - Patches (#4) 2020-08-31 02:05:21 +01:00
.env Chapter03, Part 1 (#2) 2020-08-25 22:19:53 +01:00
Cargo.toml Chapter 3 Part 1 - Patches (#4) 2020-08-31 02:05:21 +01:00
configuration.yaml Chapter 3 Part 1 - Patches (#4) 2020-08-31 02:05:21 +01:00