| a | b | c | d | e | f |
| g | h | i | j | k | l |
| m | n | o | p | q | r |
| s | t | u | v | w | x |
| y | z | 0 | 1 | 2 | 3 |
| 4 | 5 | 6 | 7 | 8 | 9 |
Secure containerized SPA hosting with spartan
Every now and then I have to build some browser based application for which I often end up using an SPA (single page application) approach. For instance, combining Vite with React and React Router in my opinion is a fast approach to get something ready quick. Adding MUI on top for a nice-looking experience can help too.
Then comes the time when this needs to be hosted somewhere, such that browsers
can download the static assets linked from the index.html at the root to make
the application availble for others to use. Using your everyday hosting provider
can be simple and straightforward, and very often a good enough choice. Those
providers usually have some offerings for static web hosting (which an SPA
basically is), which they build in their infrastructure through virtual hosts
through Apache HTTP Server or nginx or something like that. Those servers do
the trick, and they can be configured through - sometimes very complicated -
configuration settings. Sometimes I use this sort of thing too. So far so good.