From: Vsevolod Stakhov Date: Fri, 22 Jan 2021 16:44:55 +0000 (+0000) Subject: [Minor] Update interface readme X-Git-Tag: 3.0~734 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e94d1108de18898f26658cfd9f8637112dfab3c9;p=thirdparty%2Frspamd.git [Minor] Update interface readme --- diff --git a/interface/README.md b/interface/README.md index 5f6986f435..210f1b2819 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. Webui screenshot +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}"; }