From b4679c879f0ff8bb1f32cd283553a9cb43dc3053 Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Fri, 14 Apr 2023 13:41:08 +0200 Subject: [PATCH] Update README.md --- README.md | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2e7cee..d4b0fa3 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,6 @@ * open-etc-pool-friends wallet ETC: 0xd92fa5a9732a0aec36dc8d5a6a1305dc2d3e09e6 -* miningcrypto.live wallet ETC: 0x2Be9A2d9E586C0f6476ff2b1f074c4BE9Ddb7549 - ### Features ### Email: office.poolnode@gmail.com @@ -508,3 +506,31 @@ network in your config.json (this sets backend (validation,unlocker) to mordor p APP.Network in your www/config/environment.js (this sets the frontend to mordor paramaters) rerun ./build.sh + +### Extra) How To Secure the pool frontend with Let's Encrypt (https) + +First, install the Certbot's Nginx package with apt-get + +``` +$ sudo apt-get update +$ sudo apt-get install python3-certbot-nginx +``` + +And then open your nginx setting file, make sure the server name is configured! + +``` +$ sudo nano /etc/nginx/sites-available/default +. . . +server_name ; +. . . +``` + +Change the _ to your pool domain, and now you can obtain your auto-renewaled ssl certificate for free! + +``` +$ sudo certbot --nginx -d +``` + +Now you can access your pool's frontend via https! Share your pool link! + +