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
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
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
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
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
>
>
&
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
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