Minor typo in IP adress (#1256)

127.0.01 replaced by 127.0.0.1
pull/1229/head
Jean-Baptiste Pressac 2021-03-10 19:26:39 +01:00 zatwierdzone przez GitHub
rodzic d0fd833b8c
commit a1bcd2fbe5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -67,7 +67,7 @@ You can start the Datasette process running using the following::
You can confirm that Datasette is running on port 8000 like so::
curl 127.0.01:8000/-/versions.json
curl 127.0.0.1:8000/-/versions.json
# Should output JSON showing the installed version
Datasette will not be accessible from outside the server because it is listening on ``127.0.0.1``. You can expose it by instead listening on ``0.0.0.0``, but a better way is to set up a proxy such as ``nginx``.