Hanno Böck To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ include_once('certs.php'); require_role(ROLE_SYSTEMUSER); $hint = ''; $oldcert = NULL; if (isset($_REQUEST['replace'])) { $cert = cert_details($_REQUEST['replace']); $oldcert = $cert['id']; $hint = "

Hinweis: Dieses Zertifkkat 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.

Daten des alten Zertifikats:

CN: {$cert['cn']}
Gültigkeit: {$cert['valid_from']} - {$cert['valid_until']}

"; } $section = 'vhosts_certs'; title('Neues Server-Zertifikat hinzufügen'); output('

Sie können Ihr eigenes SSL-Zertifikat hinterlegen, das Sie dann für eine oder mehrere Webserver-Konfigurationen verwenden können.

Sie benötigen dazu mindestens ein Zertifikat und einen privaten Schlüssel (ohne Passwort!). Alle Daten müssen im PEM-Format vorliegen, also in etwa die Form

-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----

aufweisen. Sind die genannten Vorausetzungen erfüllt, können Sie Ihre Zertifikats-Daten einfach in untenstehendes Formular eingeben.

'.$hint); $form = '

Server-Zertifikat:

privater Schlüssel:

'; output(html_form('vhosts_certs_new', 'savecert', 'action=new&replace='.$oldcert, $form));