Created Add new users to the T-Pot WebUI (markdown)

Marco Ochse 2019-03-01 21:58:29 +01:00
parent ef7f317a65
commit 05d21f3ea1

@ -0,0 +1,14 @@
The T-Pot WebUI is reachable via <ip>: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 <username>
> 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.