Figure 11-1 shows the simplified architecture diagram for the single-node chat application. It shows exactly what you are running on your local machine right now if you followed the steps in Chapter 2.
Figure 11-1. Single-node chat application
When you register a new account, the user is stored in MySQL, and the role ROLE_USER is assigned to the user, which means that this user is not allowed to create new chat rooms.
After you sign in, the list of all available ...