-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.php
42 lines (35 loc) · 1.36 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
include('./config.php');
include('./include/my_functions.php');
include('./include/common.php');
printHeader('about');
?>
<p>
PHPki is an <a href=http://www.opensource.org target=_blank>Open Source</a>
Web application for managing a <a href="<?php print $config['base_url'] ?>help/glossary.html#PKI" target="help/glossary">
Public Key Infrastructure</a> within a small organizations. PHPki acts as a
mechanism for the centralized creation and management of digital certificates.
PHPki is capable of managing certificates for multiple organizations or user
accounts.
<p>
PHPki requires the Apache Web Server, the <a href="http://www.php.net/" target="_blank">PHP</a> Scripting Language, and <a href="http://www.openssl.org" target="_blank">
OpenSSL</a>, all of which are included with any major
<a href=http://www.linux.org target=_blank> Linux Operating System</a>
<a href=http://www.redhat.com target=_blank>distribution</a>.
<p>
This software may be freely redistributed under the terms of the
<a href="http://www.gnu.org" target="_blank">GNU</a> Public
License provided this page and all copyright notices remain completely intact.
<p>
<div style="text-align:center"><h4>Copyright: 2003, William E. Roadcap</h4>
<form>
<textarea name="gpl" cols="80" rows="30" readonly style="width: 70%">
<?php
readfile("LICENSE.TXT");
?>
</textarea>
</form>
</div>
<?php
printFooter();
?>