I have setup apache reverse proxy on the same host as zeppelin and am able to access apache url (localhost:80) to get redirected to zeppelin (localhost:9090). Here's my apache conf file contents:
<VirtualHost *:80> ProxyPreserveHost On ProxyRequests Off ProxyPass / http://localhost:9090/ ProxyPassReverse / http://localhost:9090/ ServerName localhost </VirtualHost> What issues are you running into? Also, my next step is to handle authentication in apache. Were you able to get that working? On Fri, Dec 18, 2015 at 4:54 AM, vincent gromakowski < vincent.gromakow...@gmail.com> wrote: > I am trying to make Zeppelin work behind an Apache reverse proxy that > would deal with user authentication but I have issues with the websocket. > Please could you provide me some examples of Apache configuration files > that would work in reverse proxy ? >