[ 4.3.0 ] how to configure your nginx balancer and apache reverse proxy

@yodog unfortunately It s not working for me.

I m using just nginx as web-server with the following configuration:

server {
    listen       80;
    listen       [::]:80;
    server_name  _;

    location  / {
        uwsgi_pass  django;
        include     /opt/das/webapp/uwsgi_params;
        proxy_http_version 1.1;
    }

    location /kibana/ {
        rewrite /kibana/(.*) /$1 break;
        proxy_pass http://localhost:5601/;
}

The root and elasticsearch are working fine, the problem is with kibana which is redirected to http://host/kibana/app/kibana

1 Like