From 09241606898f7c8673c995765451c0578d35f30b Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 10 Aug 2020 13:06:43 -0400 Subject: [PATCH] fix mistaken https urls in localserver instructions for some reason --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 245aaf26..1207039e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ - +
@@ -66,7 +66,7 @@ docker run -v $PWD:/data nikisweeting/archivebox init docker run -v $PWD:/data nikisweeting/archivebox add 'https://example.com' docker run -v $PWD:/data -it nikisweeting/archivebox manage createsuperuser docker run -v $PWD:/data -p 8000:8000 nikisweeting/archivebox server 0.0.0.0:8000 -open https://127.0.0.1:8000 +open http://127.0.0.1:8000 ``` ```bash @@ -74,7 +74,9 @@ open https://127.0.0.1:8000 # first download: https://github.com/pirate/ArchiveBox/blob/master/docker-compose.yml docker-compose run archivebox init docker-compose run archivebox add 'https://example.com' +docker-compose run archivebox manage createsuperuser docker-compose up +open http://127.0.0.1:8000 ``` ```bash @@ -100,7 +102,7 @@ archivebox manage createsuperuser archivebox server ``` -You can visit `https://127.0.0.1:8000` in your browser to access it. +You can visit `http://127.0.0.1:8000` in your browser to access it. [DEMO: archivebox.zervice.io/](https://archivebox.zervice.io) For more information, see the [full Quickstart guide](https://github.com/pirate/ArchiveBox/wiki/Quickstart), [Usage](https://github.com/pirate/ArchiveBox/wiki/Usage), and [Configuration](https://github.com/pirate/ArchiveBox/wiki/Configuration) docs.