rspamd ui inaccessible

Issue #832 new
Tresmos created an issue

When I try to access to the rspamd ui, it just returns “502 Bad Gateway” for me. I’ve even tried a clean install of poste.io but no luck. Currently as a workaround I’m changing

    location /admin/rspamd/ {
        auth_request .auth;
        proxy_pass  http://127.0.0.1:11334/;
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP "";
        proxy_set_header X-Forwarded-For "";
    }

with

    location /admin/rspamd/ {
        auth_request .auth;
        proxy_pass  http://localhost:11334/;
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP "";
        proxy_set_header X-Forwarded-For "";
    }

on the nginx config file. By the way I’m using poste.io with nginx reverse proxy.

Comments (0)

  1. Log in to comment