* @param path real host filesystem path to be a root of mounted point
*/
public JanoConfig mountFileView(String uri, String path, Set<Right> rights) {
Diagnostic.log("Mount: " + path + " @ " + uri + " " + rights);
path = path.startsWith(Uri.ROOT) ? "." + path : path; //use relative path
return mountView(uri, Security.secure(new FileResourceView(path), rights));
}