Skip to content

Commit

Permalink
Update FLASK-o1-preview.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xvnpw authored Dec 6, 2024
1 parent f0a54fb commit ebb1513
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions examples/FLASK-o1-preview.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,19 +167,18 @@ Selected Deployment Architecture:

```mermaid
C4Deployment
title Flask Application Deployment Diagram
Deployment_Node(host_server, "Host Server") {
Deployment_Node(nginx, "Nginx", "Reverse Proxy Server with SSL/TLS") {
Container(web_server, "Nginx", "Reverse Proxy", "Handles incoming HTTPS requests")
}
Deployment_Node(gunicorn, "Gunicorn", "WSGI Server") {
Container(flask_app, "Flask Application", "Python", "Runs the Flask application")
}
}
Rel(client_browser, web_server, "Sends requests to", "HTTPS")
Rel(web_server, flask_app, "Proxies requests to", "WSGI")
title Flask Application Deployment Diagram
Deployment_Node(host_server, "Host Server") {
Deployment_Node(nginx, "Nginx", "Reverse Proxy Server with SSL/TLS") {
Container(web_server, "Nginx", "Reverse Proxy", "Handles incoming HTTPS requests")
}
Deployment_Node(gunicorn, "Gunicorn", "WSGI Server") {
Container(flask_app, "Flask Application", "Python", "Runs the Flask application")
}
}
Rel(web_server, flask_app, "Proxies requests to", "WSGI")
```

### Elements of Deployment Diagram
Expand Down

0 comments on commit ebb1513

Please sign in to comment.