ex) zop,policy,free_time.jsp
- example
- img
- include
- lib
- WEB-INF
In //webapps/error directory, we have the error pages for HTTP error codes. If you want to have an error page for a specific HTTP error code, you can define it in /webapps/WEB-INF/web.xml.
In /nxfilter/webapps/example directory, we have some example JSP pages for custom login module.
In /nxfilter/webapps/img, we keep the image files for webpages.
In /nxfilter/webapps/include, we have common JSP files to be included into the other JSP files.
In /nxfilter/webapps/lib, we have CSS and javascript files.
We have 'WEB-INF' since we use an embedded Tomcat as NxFilter's built-in webserver.
When you customize NxFilter GUI, it is not a good idea to modify the original files directly. It would be better to keep it for future reference and create another directory and copy all the files inside /nxfilter/webapps into the new directory and then modify these copied files. To make things easier, NxFilter supports 'www_dir' option on /nxfilter/conf/cfg.properties file.
When you have your own custom GUI in /nxfilter/myweb directory and you want to use it as the root directory of NxFilter's webserver, you need to add the following line into 'cfg.properties' file.
www_dir = myweb
Then restart your NxFilter.