]> Dogcows Code - chaz/talk-introduction-to-psgi/blob - img/basic-flow2.dot
fix up for presentation
[chaz/talk-introduction-to-psgi] / img / basic-flow2.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" -> "your\napp" [label="PSGI",dir=both,fontcolor=blue,fontsize=30]
24
25 "web\nserver" [style="rounded,filled",fillcolor="#FFFF88"]
26 }
27
This page took 0.029087 seconds and 4 git commands to generate.