Re: nginx

2016-05-04 Thread Jeff Steinmetz
We do use nginx, but nginx auth only (not zeppelin+shiro). The nginx user will be the only authentication that takes place - it doesn’t pass anything to zeppelin (zeppelin is unaware of basic auth via nginx as far as I know). You are correct, that you can leave zeppelin setup for basic

nginx

2016-05-03 Thread Vijay Srinivasaraghavan
Hello, I have configured nginx to front load the authentication (basic) to Zeppelin UI. With that, I am able to see the login dialog and it allows access to Zeppelin only after entering valid credentials. However, I believe the user/principal is not propopaged to AuthenticationInfo component

Re: Reverse Proxying Zeppelin 0.5.6 with NGINX

2016-03-24 Thread Hyung Sung Shim
Hello. I think document should be updated. And Could you try following nginx configuration for proxy ? Thanks. server { listen 80 ; server_name _; location / { proxy_set_header Host$host; proxy_set_header X-Real-IP $proxy_protocol_addr; proxy_set_header X

Re: Reverse Proxying Zeppelin 0.5.6 with NGINX

2016-03-24 Thread Max Bridgewater
erver { listen 8010; server_name localhost; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass

Re: Reverse Proxying Zeppelin 0.5.6 with NGINX

2016-03-24 Thread pseudo oduesp
unsebscribe me please 2016-03-24 13:00 GMT+01:00 Jesang Yoon : > 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 > > &

RE: Reverse Proxying Zeppelin 0.5.6 with NGINX

2016-03-24 Thread Jesang Yoon
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...@g

Reverse Proxying Zeppelin 0.5.6 with NGINX

2016-03-24 Thread Max Bridgewater
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 { list