Change node UI start URL to index.html

This commit is contained in:
catbref 2019-06-03 16:08:14 +01:00
parent 921953d304
commit 7993c3e594

View File

@ -50,7 +50,7 @@ public class UiService {
uiServlet.setInitParameter("pathInfoOnly", "true");
context.addServlet(uiServlet, "/*");
rewriteHandler.addRule(new RedirectPatternRule("", "/peer.html")); // node management UI start page
rewriteHandler.addRule(new RedirectPatternRule("", "/index.html")); // node management UI start page
}
private static UiService instance;