Commit
+9 -1 +/-1 browse
1 | diff --git a/README.md b/README.md |
2 | index 442558b..910df98 100644 |
3 | --- a/README.md |
4 | +++ b/README.md |
5 | @@ -89,7 +89,15 @@ cargo run -- \ |
6 | **Note**: Always use a different S3 bucket, cache directory, and encryption key |
7 | than what you use in your production environment. |
8 | |
9 | - **Note**: *This server may not be accessible from other machines.* Specifying `--host localhost:8080` will often bind the server to an internal-only network interface (i.e., if `localhost` resolves to `127.0.0.1` or `[::1]`). Thus, to make the server accessible from the outside world, specify `--host 0.0.0.0:8080` or just `--port 8080` (the default IP the server will bind to is `0.0.0.0`). See https://github.com/jasonwhite/rudolfs/issues/38#issuecomment-973721511 for more information. |
10 | + **Warning**: *This server may not be accessible from other machines.* Specifying |
11 | + `--host localhost:8080` will often bind the server to an internal-only loopback |
12 | + network interface (i.e., if `localhost` resolves to `127.0.0.1` or `[::1]`). |
13 | + Thus, to make the server accessible from the outside world, specify `--host |
14 | + 0.0.0.0:8080` or just `--port 8080` (the default IP the server will bind to is |
15 | + `0.0.0.0`). IP `0.0.0.0` means the server shall try to bind to all available |
16 | + network interfaces, both internal and external. See |
17 | + https://github.com/jasonwhite/rudolfs/issues/38#issuecomment-973721511 for more |
18 | + information. |
19 | |
20 | ### Production |
21 |