From 05d21f3ea105d21ba294b5b209c3da3780d17bb0 Mon Sep 17 00:00:00 2001 From: Marco Ochse Date: Fri, 1 Mar 2019 21:58:29 +0100 Subject: [PATCH] Created Add new users to the T-Pot WebUI (markdown) --- Add-new-users-to-the-T-Pot-WebUI.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Add-new-users-to-the-T-Pot-WebUI.md diff --git a/Add-new-users-to-the-T-Pot-WebUI.md b/Add-new-users-to-the-T-Pot-WebUI.md new file mode 100644 index 0000000..287f117 --- /dev/null +++ b/Add-new-users-to-the-T-Pot-WebUI.md @@ -0,0 +1,14 @@ +The T-Pot WebUI is reachable via :64297 and is served by a docker container running NGINX. + +To add a new user just follow these steps: +``` +sudo su - +systemctl stop tpot +htpasswd /data/nginx/conf/nginxpasswd +> New password: +> Re-type new password: +> Adding password for user foobar +systemctl start tpot +``` + +If you want to remove users you just modify `nginxpasswd` with `vi` or any other editor and restart T-Pot again. \ No newline at end of file