summaryrefslogtreecommitdiffstats
path: root/interface/README.md
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2021-01-22 16:44:55 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2021-01-22 16:44:55 +0000
commite94d1108de18898f26658cfd9f8637112dfab3c9 (patch)
tree23e1f295be8e5363110717eff6f93b8e5b895ee6 /interface/README.md
parent0362a4f575291cbbf1e448d2c3ed4382b218c7f7 (diff)
downloadrspamd-e94d1108de18898f26658cfd9f8637112dfab3c9.tar.gz
rspamd-e94d1108de18898f26658cfd9f8637112dfab3c9.zip
[Minor] Update interface readme
Diffstat (limited to 'interface/README.md')
-rw-r--r--interface/README.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/interface/README.md b/interface/README.md
index 5f6986f43..210f1b281 100644
--- a/interface/README.md
+++ b/interface/README.md
@@ -7,13 +7,14 @@ It provides basic functions for setting metric actions, scores,
viewing statistic and learning.
<img src="https://rspamd.com/img/webui.png" class="img-responsive" alt="Webui screenshot">
+<img src="https://rspamd.com/img/webui_throughput.png" class="img-responsive" alt="Webui screenshot">
## Rspamd setup
It is required to configure dynamic settings to store configured values.
Basically this can be done by providing the following line in options settings:
-~~~nginx
+~~~ucl
options {
dynamic_conf = "/var/lib/rspamd/rspamd_dynamic";
}
@@ -23,15 +24,15 @@ Please note that this path must have write access for rspamd user.
Then controller worker should be configured:
-~~~nginx
+~~~ucl
worker {
type = "controller";
bind_socket = "localhost:11334";
count = 1;
- # Password for normal commands
- password = "q1";
- # Password for privilleged commands
- enable_password = "q2";
+ # Password for normal commands (use rspamadm pw)
+ password = "$2$anydoddx67ggcs74owybhcwqsq3z67q4$udympbo8pfcfqkeiiuj7gegabk5jpt8edmhseujhar9ooyuzig5b";
+ # Password for privilleged commands (use rspamadm pw)
+ enable_password = "$2$nx6sqkxtewx9c5s3hxjmabaxdcr46pk9$45qajkbyqx77abapiqugpjpsojj38zcqn7xnp3ekqyu674koux4b";
# Path to webiu static files
static_dir = "${WWWDIR}";
}