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. */ require_once('certs.php'); require_role(ROLE_SYSTEMUSER); $section = "vhosts_certs"; title("Zertifikat zum CSR hinzufügen"); $csr = csr_details($_REQUEST['id']); output("

Wenn Ihr CSR von der Zertifizierungsstelle akzeptiert und unterschrieben wurde, erhalten Sie ein SSL-Zertifikat zurück. Dieses hat in etwa die Form

-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
und kann direkt unten eingetragen werden.

Bitte stellen Sie sicher, dass es sich um das richtige Zertifikat handelt. Der CSR wurde ausgestellt auf den Host-/Domainnamen {$csr['hostname']}. Nur das dazu passende Zertifikat wird akzeptiert.

Wenn die Überprüfung erfolgreich verläuft, wird der CSR in unserer Datenbank gelöscht, er wird nicht mehr benötigt. Das Zertifikat und der private Schlüssel werden Ihnen umgehend für Ihre Websites zur Verfügung gestellt.

"); $form = '

Zertifikat:

'; $replace = ''; if ($csr['replace']) { $replace="&replace={$csr['replace']}"; } output(html_form('vhosts_certs_new', 'savecert', 'action=new&csr='.$csr['id'].$replace, $form));