From 06ce8670b59e9bb27700bedd77d0e8537b269945 Mon Sep 17 00:00:00 2001 From: onryo Date: Thu, 11 Feb 2021 20:31:04 +0000 Subject: [PATCH] no sudo when run lightwalletd with NGINX as Duke mentioned there is no need for sudo when using nginx, so let's remove sudo from the command to give users the best copy-paste experience ;) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0725a5a..3862033 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ server { Then run the lightwalletd frontend with the following (Note: we use the "-no-tls" option as we are using NGINX as a reverse proxy and letting it handle the TLS authentication): ``` -$ sudo go run cmd/server/main.go -bind-addr your_host.net:9067 -conf-file ~/.komodo/HUSH3/HUSH3.conf -no-tls +$ go run cmd/server/main.go -bind-addr your_host.net:9067 -conf-file ~/.komodo/HUSH3/HUSH3.conf -no-tls ``` ##### Option B: "Let's Encrypt" certificate just using lightwalletd without NGINX