Bernd Wurst commited on 2016-01-04 05:38:43
Zeige 3 geänderte Dateien mit 7 Einfügungen und 1 Löschungen.
... | ... |
@@ -108,7 +108,13 @@ if (count($vhosts) > 0) |
108 | 108 |
} |
109 | 109 |
elseif (strstr($vhost['options'], "letsencrypt") && $vhost['cert']) |
110 | 110 |
{ |
111 |
- output("<td>".other_icon("letsencrypt.png", "Automatische Zertifikatsverwaltung mit Let's Encrypt")."</td>"); |
|
111 |
+ $forward = ''; |
|
112 |
+ if ($vhost['ssl'] == 'forward') { |
|
113 |
+ $forward = " ".other_icon("refresh.png", 'Auf SSL umleiten'); |
|
114 |
+ } else { |
|
115 |
+ $forward = " ".other_icon("warning.png", 'Ungeschützter Aufruf weiterhin möglich'); |
|
116 |
+ } |
|
117 |
+ output("<td>".other_icon("letsencrypt.png", "Automatische Zertifikatsverwaltung mit Let's Encrypt").$forward."</td>"); |
|
112 | 118 |
} |
113 | 119 |
elseif ($vhost['cert']) |
114 | 120 |
{ |
115 | 121 |