Bernd Wurst commited on 2013-01-28 15:26:04
Zeige 1 geänderte Dateien mit 11 Einfügungen und 7 Löschungen.
... | ... |
@@ -21,6 +21,8 @@ $hint = ''; |
21 | 21 |
$oldcert = NULL; |
22 | 22 |
if (isset($_REQUEST['replace'])) |
23 | 23 |
{ |
24 |
+ title('Zertifikat ersetzen'); |
|
25 |
+ |
|
24 | 26 |
$cert = cert_details($_REQUEST['replace']); |
25 | 27 |
$oldcert = $cert['id']; |
26 | 28 |
$hint = "<div style=\"border: 2px solid red; padding: 1em; margin: 1em;\"<p><strong>Hinweis:</strong> Dieses Zertifikat soll als Ersatz für ein bestehendes Zertifikat eingetragen werden. Dabei wird jede Benutzung des alten Zertifikats durch das neue ersetzt. Das alte Zertifikat wird dann umgehend gelöscht.<p> |
... | ... |
@@ -28,11 +30,12 @@ if (isset($_REQUEST['replace'])) |
28 | 30 |
<p><strong>Daten des alten Zertifikats:</strong></p> |
29 | 31 |
<p><strong>CN:</strong> {$cert['cn']}<br /><strong>Gültigkeit:</strong> {$cert['valid_from']} - {$cert['valid_until']}</p></div>"; |
30 | 32 |
|
33 |
+} else { |
|
34 |
+ title('Neues Server-Zertifikat hinzufügen'); |
|
31 | 35 |
} |
32 | 36 |
|
33 |
-$section = 'vhosts_certs'; |
|
34 | 37 |
|
35 |
-title('Neues Server-Zertifikat hinzufügen'); |
|
38 |
+$section = 'vhosts_certs'; |
|
36 | 39 |
|
37 | 40 |
|
38 | 41 |
output($hint.' |
... | ... |
@@ -49,11 +52,6 @@ if ($oldcert) { |
49 | 52 |
|
50 | 53 |
output('<h4>Vorhandenes Zertifikat eintragen</h4> |
51 | 54 |
<p>Sie können Ihr eigenes SSL-Zertifikat hinterlegen, das Sie dann für eine oder mehrere Webserver-Konfigurationen verwenden können.</p> |
52 |
-<p>Sie benötigen dazu mindestens ein <strong>Zertifikat</strong> und einen <strong>privaten Schlüssel</strong> (ohne Passwort!). Alle Daten müssen im <strong>PEM-Format</strong> vorliegen, also in etwa die Form</p> |
|
53 |
-<pre>-----BEGIN CERTIFICATE----- |
|
54 |
-... |
|
55 |
------END CERTIFICATE-----</pre> |
|
56 |
-<p>aufweisen. Sind die genannten Vorausetzungen erfüllt, können Sie Ihre Zertifikats-Daten einfach in untenstehendes Formular eingeben.</p> |
|
57 | 55 |
'); |
58 | 56 |
|
59 | 57 |
|
... | ... |
@@ -69,3 +67,9 @@ $form = ' |
69 | 67 |
'; |
70 | 68 |
|
71 | 69 |
output(html_form('vhosts_certs_new', 'savecert', 'action=new&replace='.$oldcert, $form)); |
70 |
+ |
|
71 |
+output('<p>Es ist ein <strong>Zertifikat</strong> und ein dazu passender <strong>privater Schlüssel</strong> (ohne Passwort!) nötig. Alle Daten müssen im <strong>PEM-Format</strong> vorliegen, also in etwa die Form</p> |
|
72 |
+<pre>-----BEGIN CERTIFICATE----- |
|
73 |
+... |
|
74 |
+-----END CERTIFICATE-----</pre> |
|
75 |
+<p>aufweisen. Sind die genannten Vorausetzungen erfüllt, können Sie Ihre Zertifikats-Daten einfach in untenstehendes Formular eingeben.</p>'); |
|
72 | 76 |