]> Dogcows Code - chaz/talk-introduction-to-psgi/blob - img/basic-flow5.dot
fix up for presentation
[chaz/talk-introduction-to-psgi] / img / basic-flow5.dot
1
2 digraph G
3 {
4 rankdir = LR
5
6 node
7 [
8 fontname = "Inconsolata"
9 fontsize = 22
10 shape = record
11 style = rounded
12 ]
13
14 edge
15 [
16 fontname = "Inconsolata"
17 fontsize = 20
18 arrowhead = vee
19 arrowtail = vee
20 ]
21
22 "user\nagents" -> "web\nserver" [label="HTTP",dir=both]
23 "web\nserver" -> "PSGI\nhandler" [label="CGI, mod_perl,\nFastCGI, HTTP",dir=both]
24 "PSGI\nhandler" -> "web\nframework" [label="PSGI",dir=both,fontcolor=blue,fontsize=30]
25 "web\nframework" -> "your\napp" [label="???",dir=both]
26
27 "web\nframework" [style="rounded,filled",fillcolor="#FFFF88"]
28
29 subgraph cluster_devops {
30 fontname = "Inconsolata"
31 fontsize = 30
32 label = "DevOps"
33
34 "web\nserver"
35 "PSGI\nhandler"
36 }
37 }
38
This page took 0.03065 seconds and 4 git commands to generate.