BobTheFarmer / Colin-Blog3

MIT License
0 stars 2 forks source link

Pop Quiz #14

Open BobTheFarmer opened 7 months ago

BobTheFarmer commented 7 months ago

Score

0.9+0.9+0.85+0.85 = 3.5

Question 1: Describe the server_name and proxy_pass - Updated Score 0.9

Proxy_Pass: It describes where to forward requests to the backend.

Server_Name: The server name describes where the server is in the nginx backend.

Screenshot 2024-01-30 at 12 12 16 PM

2: JWT sign up or log in, split screen, show associated cookie, put it in jwt.io - 0.85

Screenshot 2024-01-30 at 11 51 22 AM

3: Show the security config rules required for access in spring boot, show request matches for all and for the authentication is required - 0.8

Screenshot 2024-01-30 at 11 55 08 AM

4: Explain a POJO and explains to a POJO - 0.9

Screenshot 2024-01-30 at 1 12 04 PM

A POJO is a plain old java object, which is just a normal object, it's controlled by other parts of the project.

5: Describe the docker process for update, show the sequence of commands to do an application update - 0.85

sudo docker-compose down
git pull
./mvnw clean
sudo docker-compose up -d
Screenshot 2024-01-31 at 12 21 54 PM