Commit 2ea3a455 by Shwetha GS

Atlas web server allows user to browse webapp directory (vrathor-hw via shwethags)

parent f3bbdc15
......@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ALL CHANGES:
Atlas web server allows user to browse webapp directory (vrathor-hw via shwethags)
ATLAS-1241 New Instance APIs and POJOs (sumasai)
ATLAS-1259 Fix Test and compilation failure caused bt ATLAS-1233 changes (apoorvnaik via sumasai)
ATLAS-1248 /bin/atlas_stop.py not killing the process and process is found alive even after 30 secs (zhangqiang2 via sumasai)
......
......@@ -52,6 +52,8 @@ public class EmbeddedServer {
protected WebAppContext getWebAppContext(String path) {
WebAppContext application = new WebAppContext(path, "/");
application.setClassLoader(Thread.currentThread().getContextClassLoader());
// Disable directory listing
application.setInitParameter("org.eclipse.jetty.servlet.Default.dirAllowed", "false");
return application;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment