Marc O. Sandlus
2023-03-31 40388615e627dc769b47b0bc46c5d0aafb419c3e
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="https://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_ssl"]
9     path_fastcgi [shape=diamond, label="Start mit fastcgi-ssl"]
10     root_cgi_bin [shape=record, label="root = cgi-ssl"]
11     root_fastcgi [shape=record, label="root = fastcgi-ssl"]
12     fqdn_matches [shape=diamond, label="FQDN-Treffer"]
13     root_htdocs_ok [shape=record, label="root = htdocs-ssl"]
14     root_search_in_subs [shape=diamond, label="Gibt es eine passende Sub-Domain?"]
15     root_subs_ok [shape=record, label="root = subs-ssl"]
cb5439 16     htdocsfallback_subs [shape=diamond, label="Ist htdocs-ssl fallback aktiv?" ]
0a126d 17     404 [shape=record, label="Error 404"] 
JUH 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