diff --git a/README.md b/README.md index f8b7f18..c5ac44e 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ nix run .#super_rogue.desktop nix run .#super_rogue.web.serve ``` -Visit https://localhost:8080/ +Visit http://localhost:8080/ ## Contributing diff --git a/flake.nix b/flake.nix index c254f8a..2613777 100644 --- a/flake.nix +++ b/flake.nix @@ -75,7 +75,7 @@ inherit test; web.src = web_src; web.serve = pkgs.writeShellScriptBin "super_rogue" '' - echo Visit https://localhost:8080/ + echo Visit http://localhost:8080/ exec ${pkgs.busybox}/bin/busybox httpd -f -h ${web_src} -v -p 8080 ''; };