I am using ckeditor latest version and full package in sailsjs. I am using file browse from server functionality.
//ckeditor/config.js
CKEDITOR.editorConfig = function( config ) {
config.filebrowserBrowseUrl = '/files';
};
There is many images in assets/files folder. When i click on browse server then one new tab is opening and url is http://example.com/files?CKEditor=ck&CKEditorFuncNum=1&langCode=en
But i am getting default not found screen. But if i access image from url like http://example.com/files/ok.png. I Can see it in browser. But if i request http://example.com/files . I need to see list of images from files folder. What i need is the following or something file browser.