From b151ed59362cbfe1ef7e12f8adafc16576725390 Mon Sep 17 00:00:00 2001 From: Winston Weinert Date: Thu, 5 Sep 2024 19:28:05 -0500 Subject: [PATCH] fix: Visit http://localhost:8080/ not https://... --- README.md | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 ''; };