Max, You can check out NGINX related settings with Zeppelin at document here: http://zeppelin.incubator.apache.org/docs/0.6.0-incubating-SNAPSHOT/security/authentication.html I hope this will help :) -----Original Message----- From: "Max Bridgewater"<max.bridgewa...@gmail.com> To: <users@zeppelin.incubator.apache.org>; Cc: Sent: 2016-03-24 (목) 20:30:13 Subject: Reverse Proxying Zeppelin 0.5.6 with NGINX 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; } }