Loading component failed: Loading chunk 5a9c3e27-83 failed. (error: http://192.168.0.150/assets/5a9c3e27-83.24a1414e150e7e2e3ce2.js)

Hi.
I have graylog cluster with 3 nodes. this cluster behind Nginx cluster. I config corosync for cluster Nginx.
my Nginx cluster config is:

upstream graylog {
    server x.x.x.x1:9000;
    server x.x.x.x2:9000;
    server x.x.x.x3:9000;
}
server {
    listen  80;
    location / {
      proxy_set_header   Host $http_host;
      proxy_set_header   X-Forwarded-Host $host;
      proxy_set_header   X-Forwarded-Server $host;
      proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_pass         http://graylog;
    }
}

I get this error in web interface:

Loading component failed: Loading chunk 5a9c3e27-83 failed. (error: http://nginx-ip/assets/5a9c3e27-83.24a1414e150e7e2e3ce2.js)

but when I have one node for nginx, There is no problem.

my graylog version:
3.1.2

He @david_graylog13

did you get this error on every login? Always the same asset?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.