Skip to content

Detail of webapp production setup

Tomas Vik requested to merge webapp-prod-setup-doc into develop

Adding the following section to the infrastructure documentation:

Detail of webapp production setup

The ELB balances the load between 8 webapp EC2 instances. Each webapp instance runs:

And users Nginx as a reverse proxy to route the incoming traffic based on the request path.

graph LR
A((User)) -- "HTTPS (443)" --> B[ELB]
B -- "HTTP (80)" --> C[Nginx]
subgraph "EC2 (webapp)"
C -- "/" --> D["web webapp (server/web.js)"]
C -- "/api{_staging}/*" --> E["api webapp (server/api.js)"]
end

Merge request reports