Jan Ulrich Hasecke
2019-11-06 cb5439576ca3bdcc0fdb98f347dae1b22c787860
commit | author | age
0a126d 1 digraph d  { 
JUH 2     node [peripheries=0, style=filled, fillcolor="grey92", font=Helvetica, fontcolor=black]
3
4     enquire_information [shape=box, label="http://www.example.com/<path>" ]
5
6
7     vh_check_fqdn [shape=record, label="Virtual Host, der FQDN am genauesten entspricht"]
8     path_cgi_bin [shape=diamond, label="Start mit cgi_bin"]
9     path_fastcgi [shape=diamond, label="Start mit fastcgi"]
10     root_cgi_bin [shape=record, label="root = cgi-bin"]
11     root_fastcgi [shape=record, label="root = fastcgi"]
12     fqdn_matches [shape=diamond, label="FQDN-Treffer"]
13     root_htdocs_ok [shape=record, label="root = htdocs"]
14     root_search_in_subs [shape=diamond, label="Gibt es eine passende Sub-Domain?"]
15     root_subs_ok [shape=record, label="root = subs"]
16     htdocsfallback_subs [shape=diamond, label="Ist htdocs fallback aktiv?" ]
17     404 [shape=record, label="Error 404"] 
18         
19     vh_check_fqdn -> path_cgi_bin 
20     path_cgi_bin -> root_cgi_bin [headlabel="Ja"]
21     path_cgi_bin -> path_fastcgi [headlabel="Nein"]   
22     path_fastcgi -> root_fastcgi [headlabel="Ja"]
23     path_fastcgi -> fqdn_matches [headlabel="Nein"] 
24     fqdn_matches -> root_htdocs_ok [headlabel="Ja"]
25     fqdn_matches -> root_search_in_subs [headlabel="Nein"]
26     root_search_in_subs -> root_subs_ok [headlabel="Ja"]
27     root_search_in_subs -> htdocsfallback_subs [headlabel="Nein"]
28     htdocsfallback_subs -> root_htdocs_ok [headlabel="Ja"]
29     htdocsfallback_subs -> 404 [headlabel="Nein"]
30 }
31