Wähle automatisch ein Lets-Encrypt-Zertifikat wenn der User auf SSL-only stellt und bisher kein eigenes Zertifikat benutzt wird.
Bernd Wurst

Bernd Wurst commited on 2016-09-20 09:43:58
Zeige 3 geänderte Dateien mit 16 Einfügungen und 1 Löschungen.

... ...
@@ -54,6 +54,10 @@
54 54
     var ssl = $('#ssl option:selected').val();
55 55
     if (ssl == 'forward') {
56 56
       $('#hsts_block').show();
57
+      var cert = $('#cert option:selected').val();
58
+      if (cert == '0') {
59
+        $('#cert').val('-1');
60
+      }
57 61
     } else
58 62
       $('#hsts_block').hide();
59 63
   }
... ...
@@ -182,7 +182,7 @@ $form .= "
182 182
 
183 183
 <h4 style=\"clear: right; margin-top: 3em;\">Allgemeine Optionen</h4>
184 184
 <div style=\"margin-left: 2em;\">
185
-    <h5>Verschlüsselte Verbindung erzwingen</h5>
185
+    <h5>Sichere Verbindung erzwingen</h5>
186 186
     <div style=\"margin-left: 2em;\">
187 187
     <select name=\"ssl\" id=\"ssl\">
188 188
       <option value=\"none\" ".($vhost['ssl'] == NULL ? 'selected="selected"' : '')." >Nein</option>
... ...
@@ -0,0 +1,11 @@
1
+.fqdn {
2
+  font-size: 1.5em;
3
+  font-weight: bold;
4
+}
5
+.www-prefix {
6
+  color: #aaa;
7
+}
8
+div.alias {
9
+  font-size: 1.5em;
10
+  font-weight: bold;
11
+}
0 12