Following " How to disable the directory listing for WebAppContext Jetty ? , I looked at the Apache Zeppelin installation directory, identified the file, web.xml
and added
<param-name>dirAllowed</param-name>
<param-value>false</param-value>
After the reboot, it looked like the configuration parameter was not selected. A list of directories was still possible.
In my understanding, ZEPPELIN-2014 and commit will require a patch to provide this configuration or activation ZeppelinServer.java
.
It will be fixed as from Zeppelin 0.7.3 or 0.8.0.
U880D source
share