Getting started:
Related tutorials:
Getting started:
Related tutorials:
| /** | |
| This web server serve 2 different type request: [static file] and [dynamic path] | |
| [Static file] URL path: /* | |
| [Dynamic Path] URL path: /api/* | |
| Preparation: | |
| 1) Create "static-files" directory to place all static file like index.html | |
| 2) Create "dynamic-files" diectory to place all dynamic or hidden logical files, example invoice.pdf | |
| 3) Place "index.html" at root of "static-files" directory | |
| 4) Place "neon.jpg" (any kind of JPEG file) at root of "dynamic-files" directory |