[Rspamd-Users] running rpamd behind http proxy
J. Fahrner
jf at fahrner.name
Fri Jan 11 08:23:55 UTC 2019
Am 2019-01-11 08:36, schrieb Marc Risse:
> is it possible to run rspamd behind a http proxy?
You mean the Web UI? Yes. This is my nginx config:
location /rspamd/ {
proxy_pass http://localhost:11334/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;
auth_basic "Rspamd";
auth_basic_user_file /etc/nginx/htpasswd;
}
More information about the Users
mailing list