I am trying to reverse proxy Zeppelin 0.5.6 using NGINX. My config is below. I get the to the Zeppelin UI but I am in disconnected mode. I cannot create notes and I don't see the Zeppelin tutorial note.
Any suggestion? Thanks, Max server localhost:8080; } server { listen 80; server_name localhost; location / { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $http_host; proxy_pass http://backendWS; } }