Skip to content

Instantly share code, notes, and snippets.

@nabinno
Created January 1, 2020 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nabinno/290da5e2116039666b1eb15033142de8 to your computer and use it in GitHub Desktop.
Save nabinno/290da5e2116039666b1eb15033142de8 to your computer and use it in GitHub Desktop.

skinparam monochrome true
skinparam backgroundColor #EEEEEE

actor User as U

control CloudFront as F
actor EC2 as E
participant S3 as S

U -> F: |GET|\n/phpbb
activate U
activate F
F <-> E
F -> U: |response|\n200
deactivate F
deactivate U

U -> F: |GET|\n/phpbb/no_page
activate U
activate F
F <-> S
F -> U: |response|\n404
deactivate F
deactivate U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment